Makefile
上传用户:haomin008
上传日期:2007-01-06
资源大小:12k
文件大小:1k
源码类别:

语音压缩

开发平台:

Unix_Linux

  1. # Makefile for CCITT subroutines and sample programs
  2. #
  3. # Modify the CC definition to invoke your ANSI-C compiler
  4. #
  5. CC = acc
  6. # Rules to build sample programs do not depend on a UNIX library program
  7. #
  8. ALL = encode decode
  9. all: $(ALL)
  10. OBJECTS = g711.o g72x.o g721.o g723_24.o g723_40.o
  11. encode: $(OBJECTS)
  12. $(CC) -o $@ encode.c $(OBJECTS)
  13. decode: $(OBJECTS)
  14. $(CC) -o $@ decode.c $(OBJECTS)
  15. # Library rules for UNIX systems
  16. #
  17. LIB = ccitt.a
  18. lib: $(LIB)
  19. $(LIB): $(OBJECTS)
  20. @rm -f $(LIB)
  21. ar cr $(LIB) $(OBJECTS)
  22. @ranlib $(LIB)
  23. clean:
  24. /bin/rm -f $(LIB) $(ALL) *.o