这是1996年旧GSM标准的make文件。我需要在运行OSX 10.11.6的MacBook上或Windows 7的大学计算机上运行。窗口没有安装nmake谷歌搜索后似乎是一个解决方案。
有没有办法使用makefile?
另外,在我的Mac上将CDIR和UTILSDIR更改为完整路径是不够的。
make -f makefile.mak
仍然会返回
TCC -A -I/Users/Henrik/Desktop/GSMHR2/DISK/c -Fc -ml -c /Users/Henrik/Desktop/GSMHR2/DISK/c/gsm_hr.c
make: TCC: No such file or directory
make: *** [gsm_hr.obj] Error 1
我认为TCDIR会出现类似的问题 这是完整的makefile.mak内容:
#
# makefile for GSM Half-Rate Speech Codec
# Version 5.0.0
# November 8, 1996
#
.SUFFIXES: .out .obj .c .e .r .f .y .l .s .p .os
CC=TCC
CDIR=..\c
UTILSDIR=..\utils
TCDIR=c:/turboc/lib
CAlsoDef=-A -I$(CDIR) -Fc -ml
CDefault=$(CAlsoDef)
CDefaultExec=$(CAlsoDef)
# installation
install: gsm_hr reid swapbin tosnwild topcwild
# EXACT files
globdefs.obj: $(CDIR)/globdefs.c
$(CC) $(CDefault) -c $?
mathdp31.obj: $(CDIR)/mathdp31.c
$(CC) $(CDefault) -c $?
mathhalf.obj: $(CDIR)/mathhalf.c
$(CC) $(CDefault) -c $?
#
# speech coder: analysis and synthesis
# object files
#
dtx.obj: $(CDIR)/dtx.c
$(CC) $(CDefault) -c $?
err_conc.obj: $(CDIR)/err_conc.c
$(CC) $(CDefault) -c $?
homing.obj: $(CDIR)/homing.c
$(CC) $(CDefault) -c $?
sp_dec.obj: $(CDIR)/sp_dec.c
$(CC) $(CDefault) -c $?
sp_enc.obj: $(CDIR)/sp_enc.c
$(CC) $(CDefault) -c $?
sp_rom.obj: $(CDIR)/sp_rom.c
$(CC) $(CDefault) -c $?
sp_sfrm.obj: $(CDIR)/sp_sfrm.c
$(CC) $(CDefault) -c $?
sp_frm.obj: $(CDIR)/sp_frm.c
$(CC) $(CDefault) -c $?
vad.obj: $(CDIR)/vad.c
$(CC) $(CDefault) -c $?
# Host files
host.obj: $(CDIR)/host.c
$(CC) $(CDefault) -c $?
# main program
gsm_hr.obj: $(CDIR)/gsm_hr.c
$(CC) $(CDefault) -c $?
# utility programs
reid.obj: $(UTILSDIR)/reid.c
$(CC) $(CDefault) -c $?
swapbin.obj: $(UTILSDIR)/swapbin.c
$(CC) $(CDefault) -c $?
topcwild.obj: $(UTILSDIR)/topcwild.c
$(CC) $(CDefault) -c $?
tosnwild.obj: $(UTILSDIR)/tosnwild.c
$(CC) $(CDefault) -c $?
# *********************** symbols ******************************************
EXACT3 = globdefs.obj mathdp31.obj mathhalf.obj
SPEECH = sp_dec.obj sp_enc.obj sp_frm.obj sp_rom.obj sp_sfrm.obj
GSM_HR = $(EXACT3) $(SPEECH) dtx.obj err_conc.obj host.obj homing.obj vad.obj
#*********************** executables **************************************
# main program
gsm_hr: gsm_hr.obj $(GSM_HR)
$(CC) $(CDefaultExec) -egsm_hr.exe @gsm_hr.rsp
# utility programs
reid: reid.obj
$(CC) $(CDefaultExec) -ereid.exe reid.obj
swapbin: swapbin.obj
$(CC) $(CDefaultExec) -eswapbin.exe swapbin.obj
tosnwild: tosnwild.obj
$(CC) $(CDefaultExec) -etosnwild.exe tosnwild.obj
topcwild: topcwild.obj
$(CC) $(CDefaultExec) -etopcwild.exe topcwild.obj
可在此处找到完整文件https://portal.3gpp.org/desktopmodules/Specifications/SpecificationDetails.aspx?specificationId=281
答案 0 :(得分:3)
删除CC=TCC
。这是对古老的DOS C编译器(Turbo C)的引用。
用正斜杠替换CDIR
和UTILSDIR
中的反斜杠。路径中的反斜杠是MS-DOS-ism。
将CAlsoDef=-A -I$(CDIR) -Fc -ml
替换为CAlsoDef=-I$(CDIR)
。其他选项特定于TCC。
希望源代码不需要太多更改。祝你好运。