makefile

来自「优化的G.726编码代码冲G.726到ADPCM」· 代码 · 共 45 行

TXT
45
字号
# Makefile for CCITT subroutines and sample programs## Modify the CC definition to invoke your ANSI-C compiler#CC = gcc# Rules to build sample programs do not depend on a UNIX library program#ALL = encode decodeall: $(ALL)OBJECTS = g711.o g72x.o g721.o g723_24.o g723_40.o g726_16.oencode: $(OBJECTS)	$(CC) -o $@ encode.c $(OBJECTS)decode: $(OBJECTS)	$(CC) -o $@ decode.c $(OBJECTS)# Library rules for UNIX systems#LIB = ccitt.alib: $(LIB)$(LIB): $(OBJECTS)	@rm -f $(LIB)	ar cr $(LIB) $(OBJECTS)	@ranlib $(LIB)clean:	/bin/rm -f $(LIB) $(ALL) *.o

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?