Makefile
上传用户:zlt_tm
上传日期:2007-01-06
资源大小:214k
文件大小:5k
源码类别:

压缩解压

开发平台:

WINDOWS

  1. # Makefile for zlib
  2. # Copyright (C) 1995-1998 Jean-loup Gailly.
  3. # For conditions of distribution and use, see copyright notice in zlib.h 
  4. # To compile and test, type:
  5. #   ./configure; make test
  6. # The call of configure is optional if you don't have special requirements
  7. # If you wish to build zlib as a shared library, use: ./configure -s
  8. # To install /usr/local/lib/libz.* and /usr/local/include/zlib.h, type:
  9. #    make install
  10. # To install in $HOME instead of /usr/local, use:
  11. #    make install prefix=$HOME
  12. CC=cc
  13. CFLAGS=-O
  14. #CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
  15. #CFLAGS=-g -DDEBUG
  16. #CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion 
  17. #           -Wstrict-prototypes -Wmissing-prototypes
  18. LDFLAGS=-L. -lz
  19. LDSHARED=$(CC)
  20. CPP=$(CC) -E
  21. VER=1.1.3
  22. LIBS=libz.a
  23. SHAREDLIB=libz.so
  24. AR=ar rc
  25. RANLIB=ranlib
  26. TAR=tar
  27. SHELL=/bin/sh
  28. prefix = /usr/local
  29. exec_prefix = ${prefix}
  30. libdir = ${exec_prefix}/lib
  31. includedir = ${prefix}/include
  32. OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o 
  33.        zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o
  34. OBJA =
  35. # to use the asm code: make OBJA=match.o
  36. TEST_OBJS = example.o minigzip.o
  37. DISTFILES = README FAQ INDEX ChangeLog configure Make*[a-z0-9] *.[ch] *.mms 
  38.   algorithm.txt zlib.3 msdos/Make*[a-z0-9] msdos/zlib.def msdos/zlib.rc 
  39.   nt/Make*[a-z0-9] nt/zlib.dnt amiga/Make*.??? os2/M*.os2 os2/zlib.def 
  40.   contrib/RE*.contrib contrib/*.txt contrib/asm386/*.asm contrib/asm386/*.c 
  41.   contrib/asm386/*.bat contrib/asm386/zlibvc.d?? contrib/asm[56]86/*.?86 
  42.   contrib/asm[56]86/*.S contrib/iostream/*.cpp 
  43.   contrib/iostream/*.h  contrib/iostream2/*.h contrib/iostream2/*.cpp 
  44.   contrib/untgz/Makefile contrib/untgz/*.c contrib/untgz/*.w32 
  45.   contrib/minizip/[CM]*[pe] contrib/minizip/*.[ch] contrib/minizip/*.[td]?? 
  46.   contrib/delphi*/*.???
  47. all: example minigzip
  48. test: all
  49. @LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; 
  50. echo hello world | ./minigzip | ./minigzip -d || 
  51.   echo ' *** minigzip test FAILED ***' ; 
  52. if ./example; then 
  53.   echo ' *** zlib test OK ***'; 
  54. else 
  55.   echo ' *** zlib test FAILED ***'; 
  56. fi
  57. libz.a: $(OBJS) $(OBJA)
  58. $(AR) $@ $(OBJS) $(OBJA)
  59. -@ ($(RANLIB) $@ || true) >/dev/null 2>&1
  60. match.o: match.S
  61. $(CPP) match.S > _match.s
  62. $(CC) -c _match.s
  63. mv _match.o match.o
  64. rm -f _match.s
  65. $(SHAREDLIB).$(VER): $(OBJS)
  66. $(LDSHARED) -o $@ $(OBJS)
  67. rm -f $(SHAREDLIB) $(SHAREDLIB).1
  68. ln -s $@ $(SHAREDLIB)
  69. ln -s $@ $(SHAREDLIB).1
  70. example: example.o $(LIBS)
  71. $(CC) $(CFLAGS) -o $@ example.o $(LDFLAGS)
  72. minigzip: minigzip.o $(LIBS)
  73. $(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS)
  74. install: $(LIBS)
  75. -@if [ ! -d $(includedir)  ]; then mkdir $(includedir); fi
  76. -@if [ ! -d $(libdir) ]; then mkdir $(libdir); fi
  77. cp zlib.h zconf.h $(includedir)
  78. chmod 644 $(includedir)/zlib.h $(includedir)/zconf.h
  79. cp $(LIBS) $(libdir)
  80. cd $(libdir); chmod 755 $(LIBS)
  81. -@(cd $(libdir); $(RANLIB) libz.a || true) >/dev/null 2>&1
  82. cd $(libdir); if test -f $(SHAREDLIB).$(VER); then 
  83.   rm -f $(SHAREDLIB) $(SHAREDLIB).1; 
  84.   ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB); 
  85.   ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB).1; 
  86.   (ldconfig || true)  >/dev/null 2>&1; 
  87. fi
  88. # The ranlib in install is needed on NeXTSTEP which checks file times
  89. # ldconfig is for Linux
  90. uninstall:
  91. cd $(includedir); 
  92. v=$(VER); 
  93. if test -f zlib.h; then 
  94.   v=`sed -n '/VERSION "/s/.*"(.*)".*/1/p' < zlib.h`; 
  95.           rm -f zlib.h zconf.h; 
  96. fi; 
  97. cd $(libdir); rm -f libz.a; 
  98. if test -f $(SHAREDLIB).$$v; then 
  99.   rm -f $(SHAREDLIB).$$v $(SHAREDLIB) $(SHAREDLIB).1; 
  100. fi
  101. clean:
  102. rm -f *.o *~ example minigzip libz.a libz.so* foo.gz so_locations 
  103.    _match.s maketree
  104. distclean: clean
  105. zip:
  106. mv Makefile Makefile~; cp -p Makefile.in Makefile
  107. rm -f test.c ztest*.c contrib/minizip/test.zip
  108. v=`sed -n -e 's/.//g' -e '/VERSION "/s/.*"(.*)".*/1/p' < zlib.h`;
  109. zip -ul9 zlib$$v $(DISTFILES)
  110. mv Makefile~ Makefile
  111. dist:
  112. mv Makefile Makefile~; cp -p Makefile.in Makefile
  113. rm -f test.c ztest*.c contrib/minizip/test.zip
  114. d=zlib-`sed -n '/VERSION "/s/.*"(.*)".*/1/p' < zlib.h`;
  115. rm -f $$d.tar.gz; 
  116. if test ! -d ../$$d; then rm -f ../$$d; ln -s `pwd` ../$$d; fi; 
  117. files=""; 
  118. for f in $(DISTFILES); do files="$$files $$d/$$f"; done; 
  119. cd ..; 
  120. GZIP=-9 $(TAR) chofz $$d/$$d.tar.gz $$files; 
  121. if test ! -d $$d; then rm -f $$d; fi
  122. mv Makefile~ Makefile
  123. tags:
  124. etags *.[ch]
  125. depend:
  126. makedepend -- $(CFLAGS) -- *.[ch]
  127. # DO NOT DELETE THIS LINE -- make depend depends on it.
  128. adler32.o: zlib.h zconf.h
  129. compress.o: zlib.h zconf.h
  130. crc32.o: zlib.h zconf.h
  131. deflate.o: deflate.h zutil.h zlib.h zconf.h
  132. example.o: zlib.h zconf.h
  133. gzio.o: zutil.h zlib.h zconf.h
  134. infblock.o: infblock.h inftrees.h infcodes.h infutil.h zutil.h zlib.h zconf.h
  135. infcodes.o: zutil.h zlib.h zconf.h
  136. infcodes.o: inftrees.h infblock.h infcodes.h infutil.h inffast.h
  137. inffast.o: zutil.h zlib.h zconf.h inftrees.h
  138. inffast.o: infblock.h infcodes.h infutil.h inffast.h
  139. inflate.o: zutil.h zlib.h zconf.h infblock.h
  140. inftrees.o: zutil.h zlib.h zconf.h inftrees.h
  141. infutil.o: zutil.h zlib.h zconf.h infblock.h inftrees.h infcodes.h infutil.h
  142. minigzip.o:  zlib.h zconf.h 
  143. trees.o: deflate.h zutil.h zlib.h zconf.h trees.h
  144. uncompr.o: zlib.h zconf.h
  145. zutil.o: zutil.h zlib.h zconf.h