aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-09-09 23:27:08 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-09-09 23:27:08 -0700
commit7df877eccdd826e94df53215f65dee639428e83f (patch)
tree11ed5070798961e28a4c69d9272ecaada500abc3 /Makefile
parentdc5a43ebfadb6b775f6e64bfeb5a461c66acb394 (diff)
downloadzlib-7df877eccdd826e94df53215f65dee639428e83f.tar.gz
zlib-7df877eccdd826e94df53215f65dee639428e83f.tar.bz2
zlib-7df877eccdd826e94df53215f65dee639428e83f.zip
zlib 1.2.3.7v1.2.3.7
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile243
1 files changed, 2 insertions, 241 deletions
diff --git a/Makefile b/Makefile
index 9b81f23..744c494 100644
--- a/Makefile
+++ b/Makefile
@@ -1,241 +1,2 @@
1# Makefile for zlib 1all:
2# Copyright (C) 1995-2010 Jean-loup Gailly. 2 -@echo "Use ./configure first. Thank you."
3# For conditions of distribution and use, see copyright notice in zlib.h
4
5# To compile and test, type:
6# ./configure; make test
7# Normally configure builds both a static and a shared library.
8# If you want to build just a static library, use: ./configure --static
9
10# To use the asm code, type:
11# cp contrib/asm?86/match.S ./match.S
12# make LOC=-DASMV OBJA=match.o
13
14# To install /usr/local/lib/libz.* and /usr/local/include/zlib.h, type:
15# make install
16# To install in $HOME instead of /usr/local, use:
17# make install prefix=$HOME
18
19CC=cc
20
21CFLAGS=-O
22#CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
23#CFLAGS=-g -DDEBUG
24#CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \
25# -Wstrict-prototypes -Wmissing-prototypes
26
27SFLAGS=-O
28
29LDFLAGS=-L. libz.a
30LDSHARED=$(CC)
31CPP=$(CC) -E
32
33STATICLIB=libz.a
34SHAREDLIB=libz.so
35SHAREDLIBV=libz.so.1.2.3.6
36SHAREDLIBM=libz.so.1
37LIBS=$(STATICLIB) $(SHAREDLIB) $(SHAREDLIBV)
38
39AR=ar rc
40RANLIB=ranlib
41TAR=tar
42SHELL=/bin/sh
43EXE=
44
45prefix = /usr/local
46exec_prefix = ${prefix}
47libdir = ${exec_prefix}/lib
48includedir = ${prefix}/include
49mandir = ${prefix}/share/man
50man3dir = ${mandir}/man3
51pkgconfigdir = ${libdir}/pkgconfig
52
53OBJC = adler32.o compress.o crc32.o deflate.o gzclose.o gzio.o gzlib.o gzread.o \
54 gzwrite.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o
55
56PIC_OBJC = adler32.lo compress.lo crc32.lo deflate.lo gzclose.lo gzio.lo gzlib.lo gzread.lo \
57 gzwrite.lo infback.lo inffast.lo inflate.lo inftrees.lo trees.lo uncompr.lo zutil.lo
58
59# to use the asm code: make OBJA=match.o, PIC_OBJA=match.lo
60OBJA =
61PIC_OBJA =
62
63OBJS = $(OBJC) $(OBJA)
64
65PIC_OBJS = $(PIC_OBJC) $(PIC_OBJA)
66
67all: static shared
68
69static: example$(EXE) minigzip$(EXE)
70
71shared: examplesh$(EXE) minigzipsh$(EXE)
72
73all64: example64$(EXE) minigzip64$(EXE)
74
75check: test
76
77test: all teststatic testshared
78
79teststatic: static
80 @echo hello world | ./minigzip | ./minigzip -d || \
81 echo ' *** minigzip test FAILED ***' ; \
82 if ./example; then \
83 echo ' *** zlib test OK ***'; \
84 else \
85 echo ' *** zlib test FAILED ***'; \
86 fi
87
88testshared: shared
89 @LD_LIBRARY_PATH=`pwd`:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \
90 LD_LIBRARYN32_PATH=`pwd`:$(LD_LIBRARYN32_PATH) ; export LD_LIBRARYN32_PATH; \
91 DYLD_LIBRARY_PATH=`pwd`:$(DYLD_LIBRARY_PATH) ; export DYLD_LIBRARY_PATH; \
92 SHLIB_PATH=`pwd`:$(SHLIB_PATH) ; export SHLIB_PATH; \
93 echo hello world | ./minigzipsh | ./minigzipsh -d || \
94 echo ' *** minigzip shared test FAILED ***' ; \
95 if ./examplesh; then \
96 echo ' *** zlib shared test OK ***'; \
97 else \
98 echo ' *** zlib shared test FAILED ***'; \
99 fi
100
101test64: all64
102 @echo hello world | ./minigzip64 | ./minigzip64 -d || \
103 echo ' *** minigzip 64-bit test FAILED ***' ; \
104 if ./example64; then \
105 echo ' *** zlib 64-bit test OK ***'; \
106 else \
107 echo ' *** zlib 64-bit test FAILED ***'; \
108 fi
109
110libz.a: $(OBJS)
111 $(AR) $@ $(OBJS)
112 -@ ($(RANLIB) $@ || true) >/dev/null 2>&1
113
114match.o: match.S
115 $(CPP) match.S > _match.s
116 $(CC) -c _match.s
117 mv _match.o match.o
118 rm -f _match.s
119
120match.lo: match.S
121 $(CPP) match.S > _match.s
122 $(CC) -c -fPIC _match.s
123 mv _match.o match.lo
124 rm -f _match.s
125
126example64.o: example.c zlib.h zconf.h zlibdefs.h
127 $(CC) $(CFLAGS) -D_FILE_OFFSET_BITS=64 -c -o $@ example.c
128
129minigzip64.o: minigzip.c zlib.h zconf.h zlibdefs.h
130 $(CC) $(CFLAGS) -D_FILE_OFFSET_BITS=64 -c -o $@ minigzip.c
131
132.SUFFIXES: .lo
133
134.c.lo:
135 -@if [ ! -d objs ]; then mkdir objs; fi
136 $(CC) $(SFLAGS) -DPIC -c -o objs/$*.o $<
137 -@mv objs/$*.o $@
138
139$(SHAREDLIBV): $(PIC_OBJS)
140 $(LDSHARED) $(SFLAGS) -o $@ $(PIC_OBJS) -lc
141 rm -f $(SHAREDLIB) $(SHAREDLIBM)
142 ln -s $@ $(SHAREDLIB)
143 ln -s $@ $(SHAREDLIBM)
144 -@rmdir objs
145
146example$(EXE): example.o $(STATICLIB)
147 $(CC) $(CFLAGS) -o $@ example.o $(LDFLAGS)
148
149minigzip$(EXE): minigzip.o $(STATICLIB)
150 $(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS)
151
152examplesh$(EXE): example.o $(SHAREDLIBV)
153 $(CC) $(CFLAGS) -o $@ example.o -L. $(SHAREDLIBV)
154
155minigzipsh$(EXE): minigzip.o $(SHAREDLIBV)
156 $(CC) $(CFLAGS) -o $@ minigzip.o -L. $(SHAREDLIBV)
157
158example64$(EXE): example64.o $(STATICLIB)
159 $(CC) $(CFLAGS) -o $@ example64.o $(LDFLAGS)
160
161minigzip64$(EXE): minigzip64.o $(STATICLIB)
162 $(CC) $(CFLAGS) -o $@ minigzip64.o $(LDFLAGS)
163
164install-libs: $(LIBS)
165 -@if [ ! -d $(DESTDIR)$(exec_prefix) ]; then mkdir -p $(DESTDIR)$(exec_prefix); fi
166 -@if [ ! -d $(DESTDIR)$(libdir) ]; then mkdir -p $(DESTDIR)$(libdir); fi
167 -@if [ ! -d $(DESTDIR)$(man3dir) ]; then mkdir -p $(DESTDIR)$(man3dir); fi
168 -@if [ ! -d $(DESTDIR)$(pkgconfigdir) ]; then mkdir -p $(DESTDIR)$(pkgconfigdir); fi
169 cp $(LIBS) $(DESTDIR)$(libdir)
170 cd $(DESTDIR)$(libdir); chmod 755 $(LIBS)
171 -@(cd $(DESTDIR)$(libdir); $(RANLIB) libz.a || true) >/dev/null 2>&1
172 cd $(DESTDIR)$(libdir); if test -f $(SHAREDLIBV); then \
173 rm -f $(SHAREDLIB) $(SHAREDLIBM); \
174 ln -s $(SHAREDLIBV) $(SHAREDLIB); \
175 ln -s $(SHAREDLIBV) $(SHAREDLIBM); \
176 (ldconfig || true) >/dev/null 2>&1; \
177 fi
178 cp zlib.3 $(DESTDIR)$(man3dir)
179 chmod 644 $(DESTDIR)$(man3dir)/zlib.3
180 cp zlib.pc $(DESTDIR)$(pkgconfigdir)
181 chmod 644 $(DESTDIR)$(pkgconfigdir)/zlib.pc
182# The ranlib in install is needed on NeXTSTEP which checks file times
183# ldconfig is for Linux
184
185install: install-libs
186 -@if [ ! -d $(DESTDIR)$(includedir) ]; then mkdir -p $(DESTDIR)$(includedir); fi
187 cp zlib.h zconf.h zlibdefs.h $(DESTDIR)$(includedir)
188 chmod 644 $(DESTDIR)$(includedir)/zlib.h $(DESTDIR)$(includedir)/zconf.h $(DESTDIR)$(includedir)/zlibdefs.h
189
190uninstall:
191 cd $(DESTDIR)$(includedir); rm -f zlib.h zconf.h zlibdefs.h
192 cd $(DESTDIR)$(libdir); rm -f libz.a; \
193 if test -f $(SHAREDLIBV); then \
194 rm -f $(SHAREDLIBV) $(SHAREDLIB) $(SHAREDLIBM); \
195 fi
196 cd $(DESTDIR)$(man3dir); rm -f zlib.3
197 cd $(DESTDIR)$(pkgconfigdir); rm -f zlib.pc
198
199mostlyclean: clean
200clean:
201 rm -f *.o *.lo *~ \
202 example$(EXE) minigzip$(EXE) examplesh$(EXE) minigzipsh$(EXE) \
203 example64$(EXE) minigzip64$(EXE) \
204 libz.* foo.gz so_locations \
205 _match.s maketree contrib/infback9/*.o
206 rm -rf objs
207
208maintainer-clean: distclean
209distclean: clean
210 cp -p Makefile.in Makefile
211 rm zlibdefs.h
212 touch -r configure zlibdefs.h
213 rm -f zlib.pc .DS_Store
214
215tags:
216 etags *.[ch]
217
218depend:
219 makedepend -- $(CFLAGS) -- *.[ch]
220
221# DO NOT DELETE THIS LINE -- make depend depends on it.
222
223adler32.o gzio.o zutil.o: zutil.h zlib.h zconf.h zlibdefs.h
224gzclose.o gzlib.o gzread.o gzwrite.o: zlib.h zconf.h zlibdefs.h gzguts.h
225compress.o example.o minigzip.o uncompr.o: zlib.h zconf.h zlibdefs.h
226crc32.o: zutil.h zlib.h zconf.h zlibdefs.h crc32.h
227deflate.o: deflate.h zutil.h zlib.h zconf.h zlibdefs.h
228infback.o inflate.o: zutil.h zlib.h zconf.h zlibdefs.h inftrees.h inflate.h inffast.h inffixed.h
229inffast.o: zutil.h zlib.h zconf.h zlibdefs.h inftrees.h inflate.h inffast.h
230inftrees.o: zutil.h zlib.h zconf.h zlibdefs.h inftrees.h
231trees.o: deflate.h zutil.h zlib.h zconf.h zlibdefs.h trees.h
232
233adler32.lo gzio.lo zutil.lo: zutil.h zlib.h zconf.h zlibdefs.h
234gzclose.lo gzlib.lo gzread.lo gzwrite.lo: zlib.h zconf.h zlibdefs.h gzguts.h
235compress.lo example.lo minigzip.lo uncompr.lo: zlib.h zconf.h zlibdefs.h
236crc32.lo: zutil.h zlib.h zconf.h zlibdefs.h crc32.h
237deflate.lo: deflate.h zutil.h zlib.h zconf.h zlibdefs.h
238infback.lo inflate.lo: zutil.h zlib.h zconf.h zlibdefs.h inftrees.h inflate.h inffast.h inffixed.h
239inffast.lo: zutil.h zlib.h zconf.h zlibdefs.h inftrees.h inflate.h inffast.h
240inftrees.lo: zutil.h zlib.h zconf.h zlibdefs.h inftrees.h
241trees.lo: deflate.h zutil.h zlib.h zconf.h zlibdefs.h trees.h