1# Makefile for zlib
2# Copyright (C) 1995-2005 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 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
27LDFLAGS=libz.a
28LDSHARED=$(CC)
29CPP=$(CC) -E
30
31LIBS=libz.a
32SHAREDLIB=libz.so
33SHAREDLIBV=libz.so.1.2.3
34SHAREDLIBM=libz.so.1
35
36AR=ar rc
37RANLIB=ranlib
38TAR=tar
39SHELL=/bin/sh
40EXE=
41
42prefix = /usr/local
43exec_prefix = ${prefix}
44libdir = ${exec_prefix}/lib
45includedir = ${prefix}/include
46mandir = ${prefix}/share/man
47man3dir = ${mandir}/man3
48
49OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \
50       zutil.o inflate.o infback.o inftrees.o inffast.o
51
52OBJA =
53# to use the asm code: make OBJA=match.o
54
55TEST_OBJS = example.o minigzip.o
56
57all: example$(EXE) minigzip$(EXE)
58
59check: test
60test: all
61	@LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \
62	echo hello world | ./minigzip | ./minigzip -d || \
63	  echo '		*** minigzip test FAILED ***' ; \
64	if ./example; then \
65	  echo '		*** zlib test OK ***'; \
66	else \
67	  echo '		*** zlib test FAILED ***'; \
68	fi
69
70libz.a: $(OBJS) $(OBJA)
71	$(AR) $@ $(OBJS) $(OBJA)
72	-@ ($(RANLIB) $@ || true) >/dev/null 2>&1
73
74match.o: match.S
75	$(CPP) match.S > _match.s
76	$(CC) -c _match.s
77	mv _match.o match.o
78	rm -f _match.s
79
80$(SHAREDLIBV): $(OBJS)
81	$(LDSHARED) -o $@ $(OBJS)
82	rm -f $(SHAREDLIB) $(SHAREDLIBM)
83	ln -s $@ $(SHAREDLIB)
84	ln -s $@ $(SHAREDLIBM)
85
86example$(EXE): example.o $(LIBS)
87	$(CC) $(CFLAGS) -o $@ example.o $(LDFLAGS)
88
89minigzip$(EXE): minigzip.o $(LIBS)
90	$(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS)
91
92install: $(LIBS)
93	-@if [ ! -d $(exec_prefix) ]; then mkdir -p $(exec_prefix); fi
94	-@if [ ! -d $(includedir)  ]; then mkdir -p $(includedir); fi
95	-@if [ ! -d $(libdir)      ]; then mkdir -p $(libdir); fi
96	-@if [ ! -d $(man3dir)     ]; then mkdir -p $(man3dir); 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 $(SHAREDLIBV); then \
103	  rm -f $(SHAREDLIB) $(SHAREDLIBM); \
104	  ln -s $(SHAREDLIBV) $(SHAREDLIB); \
105	  ln -s $(SHAREDLIBV) $(SHAREDLIBM); \
106	  (ldconfig || true)  >/dev/null 2>&1; \
107	fi
108	cp zlib.3 $(man3dir)
109	chmod 644 $(man3dir)/zlib.3
110# The ranlib in install is needed on NeXTSTEP which checks file times
111# ldconfig is for Linux
112
113uninstall:
114	cd $(includedir); \
115	cd $(libdir); rm -f libz.a; \
116	if test -f $(SHAREDLIBV); then \
117	  rm -f $(SHAREDLIBV) $(SHAREDLIB) $(SHAREDLIBM); \
118	fi
119	cd $(man3dir); rm -f zlib.3
120
121mostlyclean: clean
122clean:
123	rm -f *.o *~ example$(EXE) minigzip$(EXE) \
124	   libz.* foo.gz so_locations \
125	   _match.s maketree contrib/infback9/*.o
126
127maintainer-clean: distclean
128distclean: clean
129	cp -p Makefile.in Makefile
130	cp -p zconf.in.h zconf.h
131	rm -f .DS_Store
132
133tags:
134	etags *.[ch]
135
136depend:
137	makedepend -- $(CFLAGS) -- *.[ch]
138
139# DO NOT DELETE THIS LINE -- make depend depends on it.
140
141adler32.o: zlib.h zconf.h
142compress.o: zlib.h zconf.h
143crc32.o: crc32.h zlib.h zconf.h
144deflate.o: deflate.h zutil.h zlib.h zconf.h
145example.o: zlib.h zconf.h
146gzio.o: zutil.h zlib.h zconf.h
147inffast.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
148inflate.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
149infback.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
150inftrees.o: zutil.h zlib.h zconf.h inftrees.h
151minigzip.o: zlib.h zconf.h
152trees.o: deflate.h zutil.h zlib.h zconf.h trees.h
153uncompr.o: zlib.h zconf.h
154zutil.o: zutil.h zlib.h zconf.h
155