a quick fix for a segmentation fault in zlib I am getting whenever I
[rsync/rsync.git] / zlib / Makefile
CommitLineData
d4286ec4
PM
1# Makefile for zlib
2# Copyright (C) 1995-1998 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# The call of configure is optional if you don't have special requirements
8# If you wish to build zlib as a shared library, use: ./configure -s
9
10# To install /usr/local/lib/libz.* and /usr/local/include/zlib.h, type:
11# make install
12# To install in $HOME instead of /usr/local, use:
13# make install prefix=$HOME
14
15CC=cc
16
17CFLAGS=-O
18#CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
19#CFLAGS=-g -DDEBUG
20#CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \
21# -Wstrict-prototypes -Wmissing-prototypes
22
23LDFLAGS=-L. -lz
24LDSHARED=$(CC)
be60c7b9 25CPP=$(CC) -E
d4286ec4 26
be60c7b9 27VER=1.1.3
d4286ec4
PM
28LIBS=libz.a
29SHAREDLIB=libz.so
30
31AR=ar rc
32RANLIB=ranlib
33TAR=tar
34SHELL=/bin/sh
35
36prefix = /usr/local
37exec_prefix = ${prefix}
be60c7b9
MP
38libdir = ${exec_prefix}/lib
39includedir = ${prefix}/include
d4286ec4
PM
40
41OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \
42 zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o
43
be60c7b9
MP
44OBJA =
45# to use the asm code: make OBJA=match.o
46
d4286ec4
PM
47TEST_OBJS = example.o minigzip.o
48
be60c7b9 49DISTFILES = README FAQ INDEX ChangeLog configure Make*[a-z0-9] *.[ch] *.mms \
d4286ec4 50 algorithm.txt zlib.3 msdos/Make*[a-z0-9] msdos/zlib.def msdos/zlib.rc \
be60c7b9
MP
51 nt/Make*[a-z0-9] nt/zlib.dnt amiga/Make*.??? os2/M*.os2 os2/zlib.def \
52 contrib/RE*.contrib contrib/*.txt contrib/asm386/*.asm contrib/asm386/*.c \
53 contrib/asm386/*.bat contrib/asm386/zlibvc.d?? contrib/asm[56]86/*.?86 \
54 contrib/asm[56]86/*.S contrib/iostream/*.cpp \
d4286ec4
PM
55 contrib/iostream/*.h contrib/iostream2/*.h contrib/iostream2/*.cpp \
56 contrib/untgz/Makefile contrib/untgz/*.c contrib/untgz/*.w32 \
be60c7b9
MP
57 contrib/minizip/[CM]*[pe] contrib/minizip/*.[ch] contrib/minizip/*.[td]?? \
58 contrib/delphi*/*.???
d4286ec4
PM
59
60all: example minigzip
61
62test: all
63 @LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \
64 echo hello world | ./minigzip | ./minigzip -d || \
65 echo ' *** minigzip test FAILED ***' ; \
66 if ./example; then \
67 echo ' *** zlib test OK ***'; \
68 else \
69 echo ' *** zlib test FAILED ***'; \
70 fi
71
be60c7b9
MP
72libz.a: $(OBJS) $(OBJA)
73 $(AR) $@ $(OBJS) $(OBJA)
d4286ec4
PM
74 -@ ($(RANLIB) $@ || true) >/dev/null 2>&1
75
be60c7b9
MP
76match.o: match.S
77 $(CPP) match.S > _match.s
78 $(CC) -c _match.s
79 mv _match.o match.o
80 rm -f _match.s
81
d4286ec4
PM
82$(SHAREDLIB).$(VER): $(OBJS)
83 $(LDSHARED) -o $@ $(OBJS)
84 rm -f $(SHAREDLIB) $(SHAREDLIB).1
85 ln -s $@ $(SHAREDLIB)
86 ln -s $@ $(SHAREDLIB).1
87
88example: example.o $(LIBS)
89 $(CC) $(CFLAGS) -o $@ example.o $(LDFLAGS)
90
91minigzip: minigzip.o $(LIBS)
92 $(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS)
93
94install: $(LIBS)
be60c7b9
MP
95 -@if [ ! -d $(includedir) ]; then mkdir $(includedir); fi
96 -@if [ ! -d $(libdir) ]; then mkdir $(libdir); fi
97 cp zlib.h zconf.h $(includedir)
98 chmod 644 $(includedir)/zlib.h $(includedir)/zconf.h
99 cp $(LIBS) $(libdir)
100 cd $(libdir); chmod 755 $(LIBS)
101 -@(cd $(libdir); $(RANLIB) libz.a || true) >/dev/null 2>&1
102 cd $(libdir); if test -f $(SHAREDLIB).$(VER); then \
d4286ec4
PM
103 rm -f $(SHAREDLIB) $(SHAREDLIB).1; \
104 ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB); \
105 ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB).1; \
106 (ldconfig || true) >/dev/null 2>&1; \
107 fi
108# The ranlib in install is needed on NeXTSTEP which checks file times
109# ldconfig is for Linux
110
111uninstall:
be60c7b9 112 cd $(includedir); \
d4286ec4
PM
113 v=$(VER); \
114 if test -f zlib.h; then \
115 v=`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`; \
116 rm -f zlib.h zconf.h; \
117 fi; \
be60c7b9 118 cd $(libdir); rm -f libz.a; \
d4286ec4
PM
119 if test -f $(SHAREDLIB).$$v; then \
120 rm -f $(SHAREDLIB).$$v $(SHAREDLIB) $(SHAREDLIB).1; \
121 fi
122
123clean:
be60c7b9
MP
124 rm -f *.o *~ example minigzip libz.a libz.so* foo.gz so_locations \
125 _match.s maketree
d4286ec4
PM
126
127distclean: clean
128
129zip:
130 mv Makefile Makefile~; cp -p Makefile.in Makefile
131 rm -f test.c ztest*.c contrib/minizip/test.zip
132 v=`sed -n -e 's/\.//g' -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\
133 zip -ul9 zlib$$v $(DISTFILES)
134 mv Makefile~ Makefile
135
136dist:
137 mv Makefile Makefile~; cp -p Makefile.in Makefile
138 rm -f test.c ztest*.c contrib/minizip/test.zip
139 d=zlib-`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\
140 rm -f $$d.tar.gz; \
141 if test ! -d ../$$d; then rm -f ../$$d; ln -s `pwd` ../$$d; fi; \
142 files=""; \
143 for f in $(DISTFILES); do files="$$files $$d/$$f"; done; \
144 cd ..; \
145 GZIP=-9 $(TAR) chofz $$d/$$d.tar.gz $$files; \
146 if test ! -d $$d; then rm -f $$d; fi
147 mv Makefile~ Makefile
148
149tags:
150 etags *.[ch]
151
152depend:
153 makedepend -- $(CFLAGS) -- *.[ch]
154
155# DO NOT DELETE THIS LINE -- make depend depends on it.
156
157adler32.o: zlib.h zconf.h
158compress.o: zlib.h zconf.h
159crc32.o: zlib.h zconf.h
160deflate.o: deflate.h zutil.h zlib.h zconf.h
161example.o: zlib.h zconf.h
162gzio.o: zutil.h zlib.h zconf.h
163infblock.o: infblock.h inftrees.h infcodes.h infutil.h zutil.h zlib.h zconf.h
164infcodes.o: zutil.h zlib.h zconf.h
165infcodes.o: inftrees.h infblock.h infcodes.h infutil.h inffast.h
166inffast.o: zutil.h zlib.h zconf.h inftrees.h
167inffast.o: infblock.h infcodes.h infutil.h inffast.h
168inflate.o: zutil.h zlib.h zconf.h infblock.h
169inftrees.o: zutil.h zlib.h zconf.h inftrees.h
170infutil.o: zutil.h zlib.h zconf.h infblock.h inftrees.h infcodes.h infutil.h
171minigzip.o: zlib.h zconf.h
172trees.o: deflate.h zutil.h zlib.h zconf.h trees.h
173uncompr.o: zlib.h zconf.h
174zutil.o: zutil.h zlib.h zconf.h