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

通讯编程

开发平台:

Visual C++

  1. # Makefile for zlib
  2. # For use with Delphi and C++ Builder under Win32
  3. # Updated for zlib 1.2.x by Cosmin Truta
  4. # ------------ Borland C++ ------------
  5. # This project uses the Delphi (fastcall/register) calling convention:
  6. LOC = -DZEXPORT=__fastcall -DZEXPORTVA=__cdecl
  7. CC = bcc32
  8. LD = bcc32
  9. AR = tlib
  10. # do not use "-pr" in CFLAGS
  11. CFLAGS = -a -d -k- -O2 $(LOC)
  12. LDFLAGS =
  13. # variables
  14. ZLIB_LIB = zlib.lib
  15. OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzio.obj infback.obj
  16. OBJ2 = inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj
  17. OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzio.obj+infback.obj
  18. OBJP2 = +inffast.obj+inflate.obj+inftrees.obj+trees.obj+uncompr.obj+zutil.obj
  19. # targets
  20. all: $(ZLIB_LIB) example.exe minigzip.exe
  21. .c.obj:
  22. $(CC) -c $(CFLAGS) $*.c
  23. adler32.obj: adler32.c zlib.h zconf.h
  24. compress.obj: compress.c zlib.h zconf.h
  25. crc32.obj: crc32.c zlib.h zconf.h crc32.h
  26. deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
  27. gzio.obj: gzio.c zutil.h zlib.h zconf.h
  28. infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h 
  29.  inffast.h inffixed.h
  30. inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h 
  31.  inffast.h
  32. inflate.obj: inflate.c zutil.h zlib.h zconf.h inftrees.h inflate.h 
  33.  inffast.h inffixed.h
  34. inftrees.obj: inftrees.c zutil.h zlib.h zconf.h inftrees.h
  35. trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
  36. uncompr.obj: uncompr.c zlib.h zconf.h
  37. zutil.obj: zutil.c zutil.h zlib.h zconf.h
  38. example.obj: example.c zlib.h zconf.h
  39. minigzip.obj: minigzip.c zlib.h zconf.h
  40. # For the sake of the old Borland make,
  41. # the command line is cut to fit in the MS-DOS 128 byte limit:
  42. $(ZLIB_LIB): $(OBJ1) $(OBJ2)
  43. -del $(ZLIB_LIB)
  44. $(AR) $(ZLIB_LIB) $(OBJP1)
  45. $(AR) $(ZLIB_LIB) $(OBJP2)
  46. # testing
  47. test: example.exe minigzip.exe
  48. example
  49. echo hello world | minigzip | minigzip -d
  50. example.exe: example.obj $(ZLIB_LIB)
  51. $(LD) $(LDFLAGS) example.obj $(ZLIB_LIB)
  52. minigzip.exe: minigzip.obj $(ZLIB_LIB)
  53. $(LD) $(LDFLAGS) minigzip.obj $(ZLIB_LIB)
  54. # cleanup
  55. clean:
  56. -del *.obj
  57. -del *.exe
  58. -del *.lib
  59. -del *.tds
  60. -del zlib.bak
  61. -del foo.gz