⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 The files in this directory comprise ANSI-C language reference implementations of the CCITT (Intern
💻
字号:
# Makefile for CCITT subroutines and sample programs## Modify the CC definition to invoke your ANSI-C compiler#CC = acc# 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.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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -