]> git.lizzy.rs Git - zlib.git/blob - Makefile.in
zlib 1.2.3.8
[zlib.git] / Makefile.in
1 # Makefile for zlib
2 # Copyright (C) 1995-2010 Jean-loup Gailly.
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
19 CC=cc
20
21 CFLAGS=-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
27 SFLAGS=-O
28
29 LDFLAGS=-L. libz.a
30 LDSHARED=$(CC)
31 CPP=$(CC) -E
32
33 STATICLIB=libz.a
34 SHAREDLIB=libz.so
35 SHAREDLIBV=libz.so.1.2.3.8
36 SHAREDLIBM=libz.so.1
37 LIBS=$(STATICLIB) $(SHAREDLIB) $(SHAREDLIBV)
38
39 AR=ar rc
40 RANLIB=ranlib
41 TAR=tar
42 SHELL=/bin/sh
43 EXE=
44
45 prefix = /usr/local
46 exec_prefix = ${prefix}
47 libdir = ${exec_prefix}/lib
48 includedir = ${prefix}/include
49 mandir = ${prefix}/share/man
50 man3dir = ${mandir}/man3
51 pkgconfigdir = ${libdir}/pkgconfig
52
53 OBJC = 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
56 PIC_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
60 OBJA =
61 PIC_OBJA =
62
63 OBJS = $(OBJC) $(OBJA)
64
65 PIC_OBJS = $(PIC_OBJC) $(PIC_OBJA)
66
67 all: static shared
68
69 static: example$(EXE) minigzip$(EXE)
70
71 shared: examplesh$(EXE) minigzipsh$(EXE)
72
73 all64: example64$(EXE) minigzip64$(EXE)
74
75 check: test
76
77 test: all teststatic testshared
78
79 teststatic: static
80         @if echo hello world | ./minigzip | ./minigzip -d && ./example; then \
81           echo '                *** zlib test OK ***'; \
82         else \
83           echo '                *** zlib test FAILED ***'; false; \
84         fi
85         -@rm -f foo.gz
86
87 testshared: shared
88         @LD_LIBRARY_PATH=`pwd`:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \
89         LD_LIBRARYN32_PATH=`pwd`:$(LD_LIBRARYN32_PATH) ; export LD_LIBRARYN32_PATH; \
90         DYLD_LIBRARY_PATH=`pwd`:$(DYLD_LIBRARY_PATH) ; export DYLD_LIBRARY_PATH; \
91         SHLIB_PATH=`pwd`:$(SHLIB_PATH) ; export SHLIB_PATH; \
92         if echo hello world | ./minigzipsh | ./minigzipsh -d && ./examplesh; then \
93           echo '                *** zlib shared test OK ***'; \
94         else \
95           echo '                *** zlib shared test FAILED ***'; false; \
96         fi
97         -@rm -f foo.gz
98
99 test64: all64
100         @if echo hello world | ./minigzip64 | ./minigzip64 -d && ./example64; then \
101           echo '                *** zlib 64-bit test OK ***'; \
102         else \
103           echo '                *** zlib 64-bit test FAILED ***'; false; \
104         fi
105         -@rm -f foo.gz
106
107 libz.a: $(OBJS)
108         $(AR) $@ $(OBJS)
109         -@ ($(RANLIB) $@ || true) >/dev/null 2>&1
110
111 match.o: match.S
112         $(CPP) match.S > _match.s
113         $(CC) -c _match.s
114         mv _match.o match.o
115         rm -f _match.s
116
117 match.lo: match.S
118         $(CPP) match.S > _match.s
119         $(CC) -c -fPIC _match.s
120         mv _match.o match.lo
121         rm -f _match.s
122
123 example64.o: example.c zlib.h zconf.h
124         $(CC) $(CFLAGS) -D_FILE_OFFSET_BITS=64 -c -o $@ example.c
125
126 minigzip64.o: minigzip.c zlib.h zconf.h
127         $(CC) $(CFLAGS) -D_FILE_OFFSET_BITS=64 -c -o $@ minigzip.c
128
129 .SUFFIXES: .lo
130
131 .c.lo:
132         -@if [ ! -d objs ]; then mkdir objs; fi
133         $(CC) $(SFLAGS) -DPIC -c -o objs/$*.o $<
134         -@mv objs/$*.o $@
135
136 $(SHAREDLIBV): $(PIC_OBJS)
137         $(LDSHARED) $(SFLAGS) -o $@ $(PIC_OBJS) -lc
138         rm -f $(SHAREDLIB) $(SHAREDLIBM)
139         ln -s $@ $(SHAREDLIB)
140         ln -s $@ $(SHAREDLIBM)
141         -@rmdir objs
142
143 example$(EXE): example.o $(STATICLIB)
144         $(CC) $(CFLAGS) -o $@ example.o $(LDFLAGS)
145
146 minigzip$(EXE): minigzip.o $(STATICLIB)
147         $(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS)
148
149 examplesh$(EXE): example.o $(SHAREDLIBV)
150         $(CC) $(CFLAGS) -o $@ example.o -L. $(SHAREDLIBV)
151
152 minigzipsh$(EXE): minigzip.o $(SHAREDLIBV)
153         $(CC) $(CFLAGS) -o $@ minigzip.o -L. $(SHAREDLIBV)
154
155 example64$(EXE): example64.o $(STATICLIB)
156         $(CC) $(CFLAGS) -o $@ example64.o $(LDFLAGS)
157
158 minigzip64$(EXE): minigzip64.o $(STATICLIB)
159         $(CC) $(CFLAGS) -o $@ minigzip64.o $(LDFLAGS)
160
161 install-libs: $(LIBS)
162         -@if [ ! -d $(DESTDIR)$(exec_prefix)  ]; then mkdir -p $(DESTDIR)$(exec_prefix); fi
163         -@if [ ! -d $(DESTDIR)$(libdir)       ]; then mkdir -p $(DESTDIR)$(libdir); fi
164         -@if [ ! -d $(DESTDIR)$(man3dir)      ]; then mkdir -p $(DESTDIR)$(man3dir); fi
165         -@if [ ! -d $(DESTDIR)$(pkgconfigdir) ]; then mkdir -p $(DESTDIR)$(pkgconfigdir); fi
166         cp $(LIBS) $(DESTDIR)$(libdir)
167         cd $(DESTDIR)$(libdir); chmod 755 $(SHAREDLIB) ; chmod u=rw,go=r $(STATICLIB)
168         -@(cd $(DESTDIR)$(libdir); $(RANLIB) libz.a || true) >/dev/null 2>&1
169         cd $(DESTDIR)$(libdir); if test -f $(SHAREDLIBV); then \
170           rm -f $(SHAREDLIB) $(SHAREDLIBM); \
171           ln -s $(SHAREDLIBV) $(SHAREDLIB); \
172           ln -s $(SHAREDLIBV) $(SHAREDLIBM); \
173           (ldconfig || true)  >/dev/null 2>&1; \
174         fi
175         cp zlib.3 $(DESTDIR)$(man3dir)
176         chmod 644 $(DESTDIR)$(man3dir)/zlib.3
177         cp zlib.pc $(DESTDIR)$(pkgconfigdir)
178         chmod 644 $(DESTDIR)$(pkgconfigdir)/zlib.pc
179 # The ranlib in install is needed on NeXTSTEP which checks file times
180 # ldconfig is for Linux
181
182 install: install-libs
183         -@if [ ! -d $(DESTDIR)$(includedir)   ]; then mkdir -p $(DESTDIR)$(includedir); fi
184         cp zlib.h zconf.h $(DESTDIR)$(includedir)
185         chmod 644 $(DESTDIR)$(includedir)/zlib.h $(DESTDIR)$(includedir)/zconf.h
186
187 uninstall:
188         cd $(DESTDIR)$(includedir); rm -f zlib.h zconf.h
189         cd $(DESTDIR)$(libdir); rm -f libz.a; \
190         if test -f $(SHAREDLIBV); then \
191           rm -f $(SHAREDLIBV) $(SHAREDLIB) $(SHAREDLIBM); \
192         fi
193         cd $(DESTDIR)$(man3dir); rm -f zlib.3
194         cd $(DESTDIR)$(pkgconfigdir); rm -f zlib.pc
195
196 mostlyclean: clean
197 clean:
198         rm -f *.o *.lo *~ \
199            example$(EXE) minigzip$(EXE) examplesh$(EXE) minigzipsh$(EXE) \
200            example64$(EXE) minigzip64$(EXE) \
201            libz.* foo.gz so_locations \
202            _match.s maketree contrib/infback9/*.o
203         rm -rf objs
204
205 maintainer-clean: distclean
206 distclean: clean
207         cp -p zconf.in.h zconf.h
208         rm -f zlib.pc .DS_Store
209         -@printf 'all:\n\t-@echo "Use ./configure first.  Thank you."\n' > Makefile
210         -@touch -r Makefile.in Makefile
211
212 tags:
213         etags *.[ch]
214
215 depend:
216         makedepend -- $(CFLAGS) -- *.[ch]
217
218 # DO NOT DELETE THIS LINE -- make depend depends on it.
219
220 adler32.o gzio.o zutil.o: zutil.h zlib.h zconf.h
221 gzclose.o gzlib.o gzread.o gzwrite.o: zlib.h zconf.h gzguts.h
222 compress.o example.o minigzip.o uncompr.o: zlib.h zconf.h
223 crc32.o: zutil.h zlib.h zconf.h crc32.h
224 deflate.o: deflate.h zutil.h zlib.h zconf.h
225 infback.o inflate.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h inffixed.h
226 inffast.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
227 inftrees.o: zutil.h zlib.h zconf.h inftrees.h
228 trees.o: deflate.h zutil.h zlib.h zconf.h trees.h
229
230 adler32.lo gzio.lo zutil.lo: zutil.h zlib.h zconf.h
231 gzclose.lo gzlib.lo gzread.lo gzwrite.lo: zlib.h zconf.h gzguts.h
232 compress.lo example.lo minigzip.lo uncompr.lo: zlib.h zconf.h
233 crc32.lo: zutil.h zlib.h zconf.h crc32.h
234 deflate.lo: deflate.h zutil.h zlib.h zconf.h
235 infback.lo inflate.lo: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h inffixed.h
236 inffast.lo: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
237 inftrees.lo: zutil.h zlib.h zconf.h inftrees.h
238 trees.lo: deflate.h zutil.h zlib.h zconf.h trees.h