blob: ddb312072920297fddf7ee4c41ffbd1fbdca7f4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
|
# Makefile for zlib
# Copyright (C) 1995-1998 Jean-loup Gailly.
# For conditions of distribution and use, see copyright notice in zlib.h
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
# To compile and test, type:
# ./configure; make test
# The call of configure is optional if you don't have special requirements
# If you wish to build zlib as a shared library, use: ./configure -s
# To install /usr/local/lib/libz.* and /usr/local/include/zlib.h, type:
# make install
# To install in $HOME instead of /usr/local, use:
# make install prefix=$HOME
CC=@CC@
CFLAGS=@CFLAGS@
#CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
#CFLAGS=-g -DDEBUG
#CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \
# -Wstrict-prototypes -Wmissing-prototypes
LDFLAGS=@LDFLAGS@
LDSHARED=$(CC)
CPP=$(CC) -E
VER=1.1.3
LIBS=libz.a
SHAREDLIB=libz.so
# For CVS, separate AR and ARFLAGS.
AR=ar
RANLIB=@RANLIB@
AMTAR=@AMTAR@
SHELL=/bin/sh
prefix=@prefix@
exec_prefix = $(prefix)
libdir = ${exec_prefix}/lib
includedir = ${prefix}/include
OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \
zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o
OBJA =
# to use the asm code: make OBJA=match.o
TEST_OBJS = example.o minigzip.o
DISTFILES = README FAQ INDEX ChangeLog configure Makefile.* *.[ch] *.mms \
algorithm.txt zlib.3 msdos/Make*[a-z0-9] msdos/zlib.def msdos/zlib.rc \
nt/Make*[a-z0-9] nt/zlib.dnt amiga/Make*.??? os2/M*.os2 os2/zlib.def \
contrib/RE*.contrib contrib/*.txt contrib/asm386/*.asm contrib/asm386/*.c \
contrib/asm386/*.bat contrib/asm386/zlibvc.d?? contrib/asm[56]86/*.?86 \
contrib/asm[56]86/*.S contrib/iostream/*.cpp \
contrib/iostream/*.h contrib/iostream2/*.h contrib/iostream2/*.cpp \
contrib/untgz/Makefile contrib/untgz/*.c contrib/untgz/*.w32 \
contrib/minizip/[CM]*[pe] contrib/minizip/*.[ch] contrib/minizip/*.[td]?? \
contrib/delphi*/*.??? \
Make_vms.com .cvsignore
# for CVS's distdir & Makefile targets
subdir = zlib
# For CVS, just build libz.a
all: libz.a
# To reenable make test
all-original: all minigzip example
check test: all-original
@LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \
echo hello world | ./minigzip | ./minigzip -d || \
echo ' *** minigzip test FAILED ***' ; \
if ./example; then \
echo ' *** zlib test OK ***'; \
else \
echo ' *** zlib test FAILED ***'; \
fi
# For CVS, use an explict rc after $(AR).
libz.a: $(OBJS) $(OBJA)
$(AR) rc $@ $(OBJS) $(OBJA)
-@ ($(RANLIB) $@ || true) >/dev/null 2>&1
match.o: match.S
$(CPP) match.S > _match.s
$(CC) -c _match.s
mv _match.o match.o
rm -f _match.s
$(SHAREDLIB).$(VER): $(OBJS)
$(LDSHARED) -o $@ $(OBJS)
rm -f $(SHAREDLIB) $(SHAREDLIB).1
ln -s $@ $(SHAREDLIB)
ln -s $@ $(SHAREDLIB).1
example: example.o $(LIBS)
$(CC) $(CFLAGS) -o $@ example.o $(LDFLAGS) $(LIBS)
minigzip: minigzip.o $(LIBS)
$(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS) $(LIBS)
# For CVS, make install dependant on all and remove the uninstall target.
install: all
uninstall:
.PHONY: install uninstall
# Remove targets for CVS
info:
installcheck:
.PHONY: info installcheck
#install: $(LIBS)
# -@if [ ! -d $(includedir) ]; then mkdir $(includedir); fi
# -@if [ ! -d $(libdir) ]; then mkdir $(libdir); fi
# cp zlib.h zconf.h $(includedir)
# chmod 644 $(includedir)/zlib.h $(includedir)/zconf.h
# cp $(LIBS) $(libdir)
# cd $(libdir); chmod 755 $(LIBS)
# -@(cd $(libdir); $(RANLIB) libz.a || true) >/dev/null 2>&1
# cd $(libdir); if test -f $(SHAREDLIB).$(VER); then \
# rm -f $(SHAREDLIB) $(SHAREDLIB).1; \
# ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB); \
# ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB).1; \
# (ldconfig || true) >/dev/null 2>&1; \
# fi
# The ranlib in install is needed on NeXTSTEP which checks file times
# ldconfig is for Linux
#uninstall:
# cd $(includedir); \
# v=$(VER); \
# if test -f zlib.h; then \
# v=`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`; \
# rm -f zlib.h zconf.h; \
# fi; \
# cd $(libdir); rm -f libz.a; \
# if test -f $(SHAREDLIB).$$v; then \
# rm -f $(SHAREDLIB).$$v $(SHAREDLIB) $(SHAREDLIB).1; \
# fi
installdirs:
.PHONY: installdirs
# distdir added for CVS.
top_builddir = ..
PACKAGE = @PACKAGE@
VERSION = @VERSION@
distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
distdir:
@d=$(srcdir); \
for file in `cd $$d; echo $(DISTFILES)`; do \
if test -d $(distdir)/`dirname $$file`; then \
:; \
else \
mkdir $(distdir)/`dirname $$file`; \
fi; \
if test -d $$d/$$file; then \
cp -pR $$d/$$file $(distdir) \
|| exit 1; \
else \
test -f $(distdir)/$$file \
|| cp -p $$d/$$file $(distdir)/$$file \
|| exit 1; \
fi; \
done
.PHONY: distdir
# mostlyclean added for CVS.
mostlyclean clean:
rm -f *.o *~ example minigzip libz.a libz.so* foo.gz so_locations \
_match.s maketree
.PHONY: mostlyclean clean
# distclean and realclean and maintainer-clean added for CVS.
distclean realclean maintainer-clean: clean
rm -f Makefile
.PHONY: distclean realclean maintainer-clean
zip:
mv Makefile Makefile~; cp -p Makefile.in Makefile
rm -f test.c ztest*.c contrib/minizip/test.zip
v=`sed -n -e 's/\.//g' -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\
zip -ul9 zlib$$v $(DISTFILES)
mv Makefile~ Makefile
dist:
mv Makefile Makefile~; cp -p Makefile.in Makefile
rm -f test.c ztest*.c contrib/minizip/test.zip
d=zlib-`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\
rm -f $$d.tar.gz; \
if test ! -d ../$$d; then rm -f ../$$d; ln -s `pwd` ../$$d; fi; \
files=""; \
for f in $(DISTFILES); do files="$$files $$d/$$f"; done; \
cd ..; \
GZIP=-9 $(AMTAR) chofz $$d/$$d.tar.gz $$files; \
if test ! -d $$d; then rm -f $$d; fi
mv Makefile~ Makefile
.PHONY: tags
tags: TAGS
TAGS:
tags=; \
here=`pwd`; \
list=`(echo *.[ch] && cd $(srcdir) && echo *.[ch]) |sort |uniq`; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
|| etags $(ETAGS_ARGS) $$tags $$unique $(LISP)
# Makefile target added for CVS.
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
depend:
makedepend -- $(CFLAGS) -- *.[ch]
# DO NOT DELETE THIS LINE -- make depend depends on it.
adler32.o: zlib.h zconf.h
compress.o: zlib.h zconf.h
crc32.o: zlib.h zconf.h
deflate.o: deflate.h zutil.h zlib.h zconf.h
example.o: zlib.h zconf.h
gzio.o: zutil.h zlib.h zconf.h
infblock.o: infblock.h inftrees.h infcodes.h infutil.h zutil.h zlib.h zconf.h
infcodes.o: zutil.h zlib.h zconf.h
infcodes.o: inftrees.h infblock.h infcodes.h infutil.h inffast.h
inffast.o: zutil.h zlib.h zconf.h inftrees.h
inffast.o: infblock.h infcodes.h infutil.h inffast.h
inflate.o: zutil.h zlib.h zconf.h infblock.h
inftrees.o: zutil.h zlib.h zconf.h inftrees.h
infutil.o: zutil.h zlib.h zconf.h infblock.h inftrees.h infcodes.h infutil.h
minigzip.o: zlib.h zconf.h
trees.o: deflate.h zutil.h zlib.h zconf.h trees.h
uncompr.o: zlib.h zconf.h
zutil.o: zutil.h zlib.h zconf.h
|