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

通讯编程

开发平台:

Visual C++

  1. # Makefile for zlib
  2. # Borland C++
  3. # Last updated: 15-Mar-2003
  4. # To use, do "make -fmakefile.bor"
  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 -DDEF_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 the LOC macro below:
  11. #   -DMAX_MEM_LEVEL=7 -DMAX_WBITS=14
  12. # See zconf.h for details about the memory requirements.
  13. # ------------ Turbo C++, Borland C++ ------------
  14. #    Optional nonstandard preprocessor flags (e.g. -DMAX_MEM_LEVEL=7)
  15. #    should be added to the environment via "set LOCAL_ZLIB=-DFOO" or added
  16. #    to the declaration of LOC here:
  17. LOC = $(LOCAL_ZLIB)
  18. # type for CPU required: 0: 8086, 1: 80186, 2: 80286, 3: 80386, etc.
  19. CPU_TYP = 0
  20. # memory model: one of s, m, c, l (small, medium, compact, large)
  21. MODEL=l
  22. # replace bcc with tcc for Turbo C++ 1.0, with bcc32 for the 32 bit version
  23. CC=bcc
  24. LD=bcc
  25. AR=tlib
  26. # compiler flags
  27. # replace "-O2" by "-O -G -a -d" for Turbo C++ 1.0
  28. CFLAGS=-O2 -Z -m$(MODEL) $(LOC)
  29. LDFLAGS=-m$(MODEL) -f-
  30. # variables
  31. ZLIB_LIB = zlib_$(MODEL).lib
  32. OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzio.obj infback.obj
  33. OBJ2 = inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj
  34. OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzio.obj+infback.obj
  35. OBJP2 = +inffast.obj+inflate.obj+inftrees.obj+trees.obj+uncompr.obj+zutil.obj
  36. # targets
  37. all: $(ZLIB_LIB) example.exe minigzip.exe
  38. .c.obj:
  39. $(CC) -c $(CFLAGS) $*.c
  40. adler32.obj: adler32.c zlib.h zconf.h
  41. compress.obj: compress.c zlib.h zconf.h
  42. crc32.obj: crc32.c zlib.h zconf.h crc32.h
  43. deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
  44. gzio.obj: gzio.c zutil.h zlib.h zconf.h
  45. infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h 
  46.  inffast.h inffixed.h
  47. inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h 
  48.  inffast.h
  49. inflate.obj: inflate.c zutil.h zlib.h zconf.h inftrees.h inflate.h 
  50.  inffast.h inffixed.h
  51. inftrees.obj: inftrees.c zutil.h zlib.h zconf.h inftrees.h
  52. trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
  53. uncompr.obj: uncompr.c zlib.h zconf.h
  54. zutil.obj: zutil.c zutil.h zlib.h zconf.h
  55. example.obj: example.c zlib.h zconf.h
  56. minigzip.obj: minigzip.c zlib.h zconf.h
  57. # the command line is cut to fit in the MS-DOS 128 byte limit:
  58. $(ZLIB_LIB): $(OBJ1) $(OBJ2)
  59. -del $(ZLIB_LIB)
  60. $(AR) $(ZLIB_LIB) $(OBJP1)
  61. $(AR) $(ZLIB_LIB) $(OBJP2)
  62. example.exe: example.obj $(ZLIB_LIB)
  63. $(LD) $(LDFLAGS) example.obj $(ZLIB_LIB)
  64. minigzip.exe: minigzip.obj $(ZLIB_LIB)
  65. $(LD) $(LDFLAGS) minigzip.obj $(ZLIB_LIB)
  66. test: example.exe minigzip.exe
  67. example
  68. echo hello world | minigzip | minigzip -d
  69. clean:
  70. -del *.obj
  71. -del *.lib
  72. -del *.exe
  73. -del zlib_*.bak
  74. -del foo.gz