Makefile.tc
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # Makefile for zlib
  2. # Turbo C 2.01, Turbo C++ 1.01
  3. # Last updated: 15-Mar-2003
  4. # To use, do "make -fmakefile.tc"
  5. # To compile in small model, set below: MODEL=s
  6. # WARNING: the small model is supported but only for small values of
  7. # MAX_WBITS and MAX_MEM_LEVEL. For example:
  8. #    -DMAX_WBITS=11 -DMAX_MEM_LEVEL=3
  9. # If you wish to reduce the memory requirements (default 256K for big
  10. # objects plus a few K), you can add to CFLAGS below:
  11. #   -DMAX_MEM_LEVEL=7 -DMAX_WBITS=14
  12. # See zconf.h for details about the memory requirements.
  13. # ------------ Turbo C 2.01, Turbo C++ 1.01 ------------
  14. MODEL=l
  15. CC=tcc
  16. LD=tcc
  17. AR=tlib
  18. # CFLAGS=-O2 -G -Z -m$(MODEL) -DMAX_WBITS=11 -DMAX_MEM_LEVEL=3
  19. CFLAGS=-O2 -G -Z -m$(MODEL)
  20. LDFLAGS=-m$(MODEL) -f-
  21. # variables
  22. ZLIB_LIB = zlib_$(MODEL).lib
  23. OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzio.obj infback.obj
  24. OBJ2 = inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj
  25. OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzio.obj+infback.obj
  26. OBJP2 = +inffast.obj+inflate.obj+inftrees.obj+trees.obj+uncompr.obj+zutil.obj
  27. # targets
  28. all: $(ZLIB_LIB) example.exe minigzip.exe
  29. .c.obj:
  30. $(CC) -c $(CFLAGS) $*.c
  31. adler32.obj: adler32.c zlib.h zconf.h
  32. compress.obj: compress.c zlib.h zconf.h
  33. crc32.obj: crc32.c zlib.h zconf.h crc32.h
  34. deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
  35. gzio.obj: gzio.c zutil.h zlib.h zconf.h
  36. infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h 
  37.  inffast.h inffixed.h
  38. inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h 
  39.  inffast.h
  40. inflate.obj: inflate.c zutil.h zlib.h zconf.h inftrees.h inflate.h 
  41.  inffast.h inffixed.h
  42. inftrees.obj: inftrees.c zutil.h zlib.h zconf.h inftrees.h
  43. trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
  44. uncompr.obj: uncompr.c zlib.h zconf.h
  45. zutil.obj: zutil.c zutil.h zlib.h zconf.h
  46. example.obj: example.c zlib.h zconf.h
  47. minigzip.obj: minigzip.c zlib.h zconf.h
  48. # the command line is cut to fit in the MS-DOS 128 byte limit:
  49. $(ZLIB_LIB): $(OBJ1) $(OBJ2)
  50. -del $(ZLIB_LIB)
  51. $(AR) $(ZLIB_LIB) $(OBJP1)
  52. $(AR) $(ZLIB_LIB) $(OBJP2)
  53. example.exe: example.obj $(ZLIB_LIB)
  54. $(LD) $(LDFLAGS) example.obj $(ZLIB_LIB)
  55. minigzip.exe: minigzip.obj $(ZLIB_LIB)
  56. $(LD) $(LDFLAGS) minigzip.obj $(ZLIB_LIB)
  57. test: example.exe minigzip.exe
  58. example
  59. echo hello world | minigzip | minigzip -d
  60. clean:
  61. -del *.obj
  62. -del *.lib
  63. -del *.exe
  64. -del zlib_*.bak
  65. -del foo.gz