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

压缩解压

开发平台:

WINDOWS

  1. # Makefile for zlib.  Modified for djgpp v2.0 by F. J. Donahoe, 3/15/96.
  2. # Copyright (C) 1995-1998 Jean-loup Gailly.
  3. # For conditions of distribution and use, see copyright notice in zlib.h 
  4. # To compile, or to compile and test, type:
  5. #   make -fmakefile.dj2;  make test -fmakefile.dj2
  6. # To install libz.a, zconf.h and zlib.h in the djgpp directories, type:
  7. #    make install -fmakefile.dj2
  8. # after first defining LIBRARY_PATH and INCLUDE_PATH in djgpp.env as
  9. # in the sample below if the pattern of the DJGPP distribution is to
  10. # be followed.  Remember that, while <sp>'es around <=> are ignored in
  11. # makefiles, they are *not* in batch files or in djgpp.env.
  12. # - - - - -
  13. # [make]
  14. # INCLUDE_PATH=%>;INCLUDE_PATH%%DJDIR%include
  15. # LIBRARY_PATH=%>;LIBRARY_PATH%%DJDIR%lib
  16. # BUTT=-m486
  17. # - - - - -
  18. # Alternately, these variables may be defined below, overriding the values
  19. # in djgpp.env, as
  20. # INCLUDE_PATH=c:usrinclude
  21. # LIBRARY_PATH=c:usrlib
  22. CC=gcc
  23. #CFLAGS=-MMD -O
  24. #CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
  25. #CFLAGS=-MMD -g -DDEBUG
  26. CFLAGS=-MMD -O3 $(BUTT) -Wall -Wwrite-strings -Wpointer-arith -Wconversion 
  27.              -Wstrict-prototypes -Wmissing-prototypes
  28. # If cp.exe is available, replace "copy /Y" with "cp -fp" .
  29. CP=copy /Y
  30. # If gnu install.exe is available, replace $(CP) with ginstall.
  31. INSTALL=$(CP)
  32. # The default value of RM is "rm -f."  If "rm.exe" is found, comment out:
  33. RM=del
  34. LDLIBS=-L. -lz
  35. LD=$(CC) -s -o
  36. LDSHARED=$(CC)
  37. INCL=zlib.h zconf.h
  38. LIBS=libz.a
  39. AR=ar rcs
  40. prefix=/usr/local
  41. exec_prefix = $(prefix)
  42. OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o 
  43.        zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o
  44. TEST_OBJS = example.o minigzip.o
  45. all: example.exe minigzip.exe
  46. test: all
  47. ./example
  48. echo hello world | .minigzip | .minigzip -d 
  49. %.o : %.c
  50. $(CC) $(CFLAGS) -c $< -o $@
  51. libz.a: $(OBJS)
  52. $(AR) $@ $(OBJS)
  53. %.exe : %.o $(LIBS)
  54. $(LD) $@ $< $(LDLIBS)
  55. # INCLUDE_PATH and LIBRARY_PATH were set for [make] in djgpp.env .
  56. .PHONY : uninstall clean
  57. install: $(INCL) $(LIBS)
  58. -@if not exist $(INCLUDE_PATH)nul mkdir $(INCLUDE_PATH)
  59. -@if not exist $(LIBRARY_PATH)nul mkdir $(LIBRARY_PATH)
  60. $(INSTALL) zlib.h $(INCLUDE_PATH)
  61. $(INSTALL) zconf.h $(INCLUDE_PATH)
  62. $(INSTALL) libz.a $(LIBRARY_PATH)
  63. uninstall:
  64. $(RM) $(INCLUDE_PATH)zlib.h
  65. $(RM) $(INCLUDE_PATH)zconf.h
  66. $(RM) $(LIBRARY_PATH)libz.a
  67. clean:
  68. $(RM) *.d
  69. $(RM) *.o
  70. $(RM) *.exe
  71. $(RM) libz.a
  72. $(RM) foo.gz
  73. DEPS := $(wildcard *.d)
  74. ifneq ($(DEPS),)
  75. include $(DEPS)
  76. endif