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

通讯编程

开发平台:

Visual C++

  1. # Makefile for zlib, derived from Makefile.dj2.
  2. # Modified for mingw32 by C. Spieler, 6/16/98.
  3. # Updated for zlib 1.2.x by Christian Spieler and Cosmin Truta, Mar-2003.
  4. # Last updated: 1-Aug-2003.
  5. # Tested under Cygwin and MinGW.
  6. # Copyright (C) 1995-2003 Jean-loup Gailly.
  7. # For conditions of distribution and use, see copyright notice in zlib.h
  8. # To compile, or to compile and test, type:
  9. #
  10. #   make -fmakefile.gcc;  make test testdll -fmakefile.gcc
  11. #
  12. # To use the asm code, type:
  13. #   cp contrib/asm?86/match.S ./match.S
  14. #   make LOC=-DASMV OBJA=match.o -fmakefile.gcc
  15. #
  16. # To install libz.a, zconf.h and zlib.h in the system directories, type:
  17. #
  18. #   make install -fmakefile.gcc
  19. # Note:
  20. # If the platform is *not* MinGW (e.g. it is Cygwin or UWIN),
  21. # the DLL name should be changed from "zlib1.dll".
  22. STATICLIB = libz.a
  23. SHAREDLIB = zlib1.dll
  24. IMPLIB    = libzdll.a
  25. #LOC = -DASMV
  26. #LOC = -DDEBUG -g
  27. CC = gcc
  28. CFLAGS = $(LOC) -O3 -Wall
  29. AS = $(CC)
  30. ASFLAGS = $(LOC) -Wall
  31. LD = $(CC)
  32. LDFLAGS = $(LOC) -s
  33. AR = ar
  34. ARFLAGS = rcs
  35. RC = windres
  36. RCFLAGS = --define GCC_WINDRES
  37. CP = cp -fp
  38. # If GNU install is available, replace $(CP) with install.
  39. INSTALL = $(CP)
  40. RM = rm -f
  41. prefix = /usr/local
  42. exec_prefix = $(prefix)
  43. OBJS = adler32.o compress.o crc32.o deflate.o gzio.o infback.o 
  44.        inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o
  45. OBJA =
  46. all: $(STATICLIB) $(SHAREDLIB) $(IMPLIB) example minigzip example_d minigzip_d
  47. test: example minigzip
  48. ./example
  49. echo hello world | ./minigzip | ./minigzip -d
  50. testdll: example_d minigzip_d
  51. ./example_d
  52. echo hello world | ./minigzip_d | ./minigzip_d -d
  53. .c.o:
  54. $(CC) $(CFLAGS) -c -o $@ $<
  55. .S.o:
  56. $(AS) $(ASFLAGS) -c -o $@ $<
  57. $(STATICLIB): $(OBJS) $(OBJA)
  58. $(AR) $(ARFLAGS) $@ $(OBJS) $(OBJA)
  59. $(IMPLIB): $(SHAREDLIB)
  60. $(SHAREDLIB): win32/zlib.def $(OBJS) $(OBJA) zlibrc.o
  61. dllwrap --driver-name $(CC) --def win32/zlib.def 
  62.   --implib $(IMPLIB) -o $@ $(OBJS) $(OBJA) zlibrc.o
  63. strip $@
  64. example: example.o $(STATICLIB)
  65. $(LD) $(LDFLAGS) -o $@ example.o $(STATICLIB)
  66. minigzip: minigzip.o $(STATICLIB)
  67. $(LD) $(LDFLAGS) -o $@ minigzip.o $(STATICLIB)
  68. example_d: example.o $(IMPLIB)
  69. $(LD) $(LDFLAGS) -o $@ example.o $(IMPLIB)
  70. minigzip_d: minigzip.o $(IMPLIB)
  71. $(LD) $(LDFLAGS) -o $@ minigzip.o $(IMPLIB)
  72. zlibrc.o: win32/zlib1.rc
  73. $(RC) $(RCFLAGS) -o $@ win32/zlib1.rc
  74. # INCLUDE_PATH and LIBRARY_PATH must be set.
  75. .PHONY: install uninstall clean
  76. install: zlib.h zconf.h $(LIB)
  77. -@if not exist $(INCLUDE_PATH)/nul mkdir $(INCLUDE_PATH)
  78. -@if not exist $(LIBRARY_PATH)/nul mkdir $(LIBRARY_PATH)
  79. -$(INSTALL) zlib.h $(INCLUDE_PATH)
  80. -$(INSTALL) zconf.h $(INCLUDE_PATH)
  81. -$(INSTALL) $(STATICLIB) $(LIBRARY_PATH)
  82. -$(INSTALL) $(IMPLIB) $(LIBRARY_PATH)
  83. uninstall:
  84. -$(RM) $(INCLUDE_PATH)/zlib.h
  85. -$(RM) $(INCLUDE_PATH)/zconf.h
  86. -$(RM) $(LIBRARY_PATH)/$(STATICLIB)
  87. -$(RM) $(LIBRARY_PATH)/$(IMPLIB)
  88. clean:
  89. -$(RM) $(STATICLIB)
  90. -$(RM) $(SHAREDLIB)
  91. -$(RM) $(IMPLIB)
  92. -$(RM) *.o
  93. -$(RM) *.exe
  94. -$(RM) foo.gz
  95. adler32.o: zlib.h zconf.h
  96. compress.o: zlib.h zconf.h
  97. crc32.o: crc32.h zlib.h zconf.h
  98. deflate.o: deflate.h zutil.h zlib.h zconf.h
  99. example.o: zlib.h zconf.h
  100. gzio.o: zutil.h zlib.h zconf.h
  101. inffast.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
  102. inflate.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
  103. infback.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
  104. inftrees.o: zutil.h zlib.h zconf.h inftrees.h
  105. minigzip.o: zlib.h zconf.h
  106. trees.o: deflate.h zutil.h zlib.h zconf.h trees.h
  107. uncompr.o: zlib.h zconf.h
  108. zutil.o: zutil.h zlib.h zconf.h