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.
7 # Copyright (C) 1995-2003 Jean-loup Gailly.
8 # For conditions of distribution and use, see copyright notice in zlib.h
10 # To compile, or to compile and test, type:
12 # make -fmakefile.gcc; make test testdll -fmakefile.gcc
14 # To use the asm code, type:
15 # cp contrib/asm?86/match.S ./match.S
16 # make LOC=-DASMV OBJA=match.o -fmakefile.gcc
18 # To install libz.a, zconf.h and zlib.h in the system directories, type:
20 # make install -fmakefile.gcc
23 # If the platform is *not* MinGW (e.g. it is Cygwin or UWIN),
24 # the DLL name should be changed from "zlib1.dll".
31 # Set to 1 if shared object needs to be installed
40 CFLAGS = $(LOC) -O3 -Wall
41 EXTRA_CFLAGS = -DNO_VIZ
44 ASFLAGS = $(LOC) -Wall
53 RCFLAGS = --define GCC_WINDRES
55 STRIP = $(PREFIX)strip
58 # If GNU install is available, replace $(CP) with install.
63 exec_prefix = $(prefix)
65 OBJS = adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o \
66 gzwrite.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o
69 all: $(STATICLIB) $(SHAREDLIB) $(IMPLIB) example.exe minigzip.exe example_d.exe minigzip_d.exe
71 test: example.exe minigzip.exe
73 echo hello world | ./minigzip | ./minigzip -d
75 testdll: example_d.exe minigzip_d.exe
77 echo hello world | ./minigzip_d | ./minigzip_d -d
80 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
83 $(AS) $(ASFLAGS) -c -o $@ $<
85 $(STATICLIB): $(OBJS) $(OBJA)
86 $(AR) $(ARFLAGS) $@ $(OBJS) $(OBJA)
88 $(IMPLIB): $(SHAREDLIB)
90 $(SHAREDLIB): win32/zlib.def $(OBJS) $(OBJA) zlibrc.o
91 $(CC) -shared -Wl,--out-implib,$(IMPLIB) $(LDFLAGS) \
92 -o $@ win32/zlib.def $(OBJS) $(OBJA) zlibrc.o
95 example.exe: example.o $(STATICLIB)
96 $(LD) $(LDFLAGS) -o $@ example.o $(STATICLIB)
99 minigzip.exe: minigzip.o $(STATICLIB)
100 $(LD) $(LDFLAGS) -o $@ minigzip.o $(STATICLIB)
103 example_d.exe: example.o $(IMPLIB)
104 $(LD) $(LDFLAGS) -o $@ example.o $(IMPLIB)
107 minigzip_d.exe: minigzip.o $(IMPLIB)
108 $(LD) $(LDFLAGS) -o $@ minigzip.o $(IMPLIB)
111 zlibrc.o: win32/zlib1.rc
112 $(RC) $(RCFLAGS) -o $@ win32/zlib1.rc
115 # BINARY_PATH, INCLUDE_PATH and LIBRARY_PATH must be set.
117 .PHONY: install uninstall clean
119 install: zlib.h zconf.h $(STATICLIB) $(IMPLIB)
120 -@mkdir -p $(INCLUDE_PATH)
121 -@mkdir -p $(LIBRARY_PATH)
122 -if [ "$(SHARED_MODE)" = "1" ]; then \
123 mkdir -p $(BINARY_PATH); \
124 $(INSTALL) $(SHAREDLIB) $(BINARY_PATH); \
125 $(INSTALL) $(IMPLIB) $(LIBRARY_PATH); \
127 -$(INSTALL) zlib.h $(INCLUDE_PATH)
128 -$(INSTALL) zconf.h $(INCLUDE_PATH)
129 -$(INSTALL) $(STATICLIB) $(LIBRARY_PATH)
132 -if [ "$(SHARED_MODE)" = "1" ]; then \
133 $(RM) $(BINARY_PATH)/$(SHAREDLIB); \
134 $(RM) $(LIBRARY_PATH)/$(IMPLIB); \
136 -$(RM) $(INCLUDE_PATH)/zlib.h
137 -$(RM) $(INCLUDE_PATH)/zconf.h
138 -$(RM) $(LIBRARY_PATH)/$(STATICLIB)
148 adler32.o: zlib.h zconf.h
149 compress.o: zlib.h zconf.h
150 crc32.o: crc32.h zlib.h zconf.h
151 deflate.o: deflate.h zutil.h zlib.h zconf.h
152 example.o: zlib.h zconf.h
153 gzclose.o: zlib.h zconf.h gzguts.h
154 gzlib.o: zlib.h zconf.h gzguts.h
155 gzread.o: zlib.h zconf.h gzguts.h
156 gzwrite.o: zlib.h zconf.h gzguts.h
157 inffast.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
158 inflate.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
159 infback.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
160 inftrees.o: zutil.h zlib.h zconf.h inftrees.h
161 minigzip.o: zlib.h zconf.h
162 trees.o: deflate.h zutil.h zlib.h zconf.h trees.h
163 uncompr.o: zlib.h zconf.h
164 zutil.o: zutil.h zlib.h zconf.h