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

压缩解压

开发平台:

WINDOWS

  1. # Makefile for zlib.  Modified for emx/rsxnt by Chr. Spieler, 6/16/98.
  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.emx;  make test -fmakefile.emx
  6. CC=gcc -Zwin32
  7. #CFLAGS=-MMD -O
  8. #CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
  9. #CFLAGS=-MMD -g -DDEBUG
  10. CFLAGS=-MMD -O3 $(BUTT) -Wall -Wwrite-strings -Wpointer-arith -Wconversion 
  11.              -Wstrict-prototypes -Wmissing-prototypes
  12. # If cp.exe is available, replace "copy /Y" with "cp -fp" .
  13. CP=copy /Y
  14. # If gnu install.exe is available, replace $(CP) with ginstall.
  15. INSTALL=$(CP)
  16. # The default value of RM is "rm -f."  If "rm.exe" is found, comment out:
  17. RM=del
  18. LDLIBS=-L. -lzlib
  19. LD=$(CC) -s -o
  20. LDSHARED=$(CC)
  21. INCL=zlib.h zconf.h
  22. LIBS=zlib.a
  23. AR=ar rcs
  24. prefix=/usr/local
  25. exec_prefix = $(prefix)
  26. OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o 
  27.        zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o
  28. TEST_OBJS = example.o minigzip.o
  29. all: example.exe minigzip.exe
  30. test: all
  31. ./example
  32. echo hello world | .minigzip | .minigzip -d 
  33. %.o : %.c
  34. $(CC) $(CFLAGS) -c $< -o $@
  35. zlib.a: $(OBJS)
  36. $(AR) $@ $(OBJS)
  37. %.exe : %.o $(LIBS)
  38. $(LD) $@ $< $(LDLIBS)
  39. .PHONY : clean
  40. clean:
  41. $(RM) *.d
  42. $(RM) *.o
  43. $(RM) *.exe
  44. $(RM) zlib.a
  45. $(RM) foo.gz
  46. DEPS := $(wildcard *.d)
  47. ifneq ($(DEPS),)
  48. include $(DEPS)
  49. endif
  50. # Makefile for zlib.  Modified for emx 0.9c by Chr. Spieler, 6/17/98.
  51. # Copyright (C) 1995-1998 Jean-loup Gailly.
  52. # For conditions of distribution and use, see copyright notice in zlib.h 
  53. # To compile, or to compile and test, type:
  54. #   make -fmakefile.emx;  make test -fmakefile.emx
  55. CC=gcc
  56. #CFLAGS=-MMD -O
  57. #CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
  58. #CFLAGS=-MMD -g -DDEBUG
  59. CFLAGS=-MMD -O3 $(BUTT) -Wall -Wwrite-strings -Wpointer-arith -Wconversion 
  60.              -Wstrict-prototypes -Wmissing-prototypes
  61. # If cp.exe is available, replace "copy /Y" with "cp -fp" .
  62. CP=copy /Y
  63. # If gnu install.exe is available, replace $(CP) with ginstall.
  64. INSTALL=$(CP)
  65. # The default value of RM is "rm -f."  If "rm.exe" is found, comment out:
  66. RM=del
  67. LDLIBS=-L. -lzlib
  68. LD=$(CC) -s -o
  69. LDSHARED=$(CC)
  70. INCL=zlib.h zconf.h
  71. LIBS=zlib.a
  72. AR=ar rcs
  73. prefix=/usr/local
  74. exec_prefix = $(prefix)
  75. OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o 
  76.        zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o
  77. TEST_OBJS = example.o minigzip.o
  78. all: example.exe minigzip.exe
  79. test: all
  80. ./example
  81. echo hello world | .minigzip | .minigzip -d 
  82. %.o : %.c
  83. $(CC) $(CFLAGS) -c $< -o $@
  84. zlib.a: $(OBJS)
  85. $(AR) $@ $(OBJS)
  86. %.exe : %.o $(LIBS)
  87. $(LD) $@ $< $(LDLIBS)
  88. .PHONY : clean
  89. clean:
  90. $(RM) *.d
  91. $(RM) *.o
  92. $(RM) *.exe
  93. $(RM) zlib.a
  94. $(RM) foo.gz
  95. DEPS := $(wildcard *.d)
  96. ifneq ($(DEPS),)
  97. include $(DEPS)
  98. endif