Makefile.in 5.6 KB
Newer Older
M
Mark Adler 已提交
1
# Makefile for zlib
M
Mark Adler 已提交
2
# Copyright (C) 1995-2003 Jean-loup Gailly.
M
Mark Adler 已提交
3
# For conditions of distribution and use, see copyright notice in zlib.h
M
Mark Adler 已提交
4 5

# To compile and test, type:
M
Mark Adler 已提交
6
#    ./configure; make test
M
Mark Adler 已提交
7
# The call of configure is optional if you don't have special requirements
M
Mark Adler 已提交
8
# If you wish to build zlib as a shared library, use: ./configure -s
M
Mark Adler 已提交
9

M
Mark Adler 已提交
10 11 12 13
# To use the asm code, type:
#    cp contrib/asm?86/match.S ./match.S
#    make LOC=-DASMV OBJA=match.o

M
Mark Adler 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26
# 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=-O
#CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
#CFLAGS=-g -DDEBUG
#CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \
#           -Wstrict-prototypes -Wmissing-prototypes

M
Mark Adler 已提交
27
LDFLAGS=libz.a
M
Mark Adler 已提交
28
LDSHARED=$(CC)
M
Mark Adler 已提交
29
CPP=$(CC) -E
M
Mark Adler 已提交
30

M
Mark Adler 已提交
31
VER=1.2.0.5
M
Mark Adler 已提交
32
LIBS=libz.a
M
Mark Adler 已提交
33
SHAREDLIB=libz.so
M
Mark Adler 已提交
34 35 36 37

AR=ar rc
RANLIB=ranlib
TAR=tar
M
Mark Adler 已提交
38
SHELL=/bin/sh
M
Mark Adler 已提交
39

M
Mark Adler 已提交
40 41
prefix = /usr/local
exec_prefix = ${prefix}
M
Mark Adler 已提交
42 43
libdir = ${exec_prefix}/lib
includedir = ${prefix}/include
M
Mark Adler 已提交
44 45
mandir = ${prefix}/share/man
man3dir = ${mandir}/man3
M
Mark Adler 已提交
46 47

OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \
M
Mark Adler 已提交
48
       zutil.o inflate.o infback.o inftrees.o inffast.o
M
Mark Adler 已提交
49

M
Mark Adler 已提交
50 51 52
OBJA =
# to use the asm code: make OBJA=match.o

M
Mark Adler 已提交
53 54
TEST_OBJS = example.o minigzip.o

M
Mark Adler 已提交
55
# Note: this has not been updated for zlib 1.2.0
M
Mark Adler 已提交
56
DISTFILES = README FAQ INDEX ChangeLog configure Make*[a-z0-9] *.[ch] *.mms \
M
Mark Adler 已提交
57 58
  algorithm.txt zlib.3 zlib.html \
  msdos/Make*[a-z0-9] msdos/zlib.def msdos/zlib.rc \
M
Mark Adler 已提交
59 60 61 62
  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 \
M
Mark Adler 已提交
63
  contrib/iostream/*.h  contrib/iostream2/*.h contrib/iostream2/*.cpp \
M
Mark Adler 已提交
64
  contrib/untgz/Makefile contrib/untgz/*.c contrib/untgz/*.w32 \
M
Mark Adler 已提交
65 66
  contrib/minizip/[CM]*[pe] contrib/minizip/*.[ch] contrib/minizip/*.[td]?? \
  contrib/delphi*/*.???
M
Mark Adler 已提交
67 68 69

all: example minigzip

M
Mark Adler 已提交
70
check: test
M
Mark Adler 已提交
71
test: all
M
Mark Adler 已提交
72
	@LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \
M
Mark Adler 已提交
73 74 75 76 77 78 79
	echo hello world | ./minigzip | ./minigzip -d || \
	  echo '		*** minigzip test FAILED ***' ; \
	if ./example; then \
	  echo '		*** zlib test OK ***'; \
	else \
	  echo '		*** zlib test FAILED ***'; \
	fi
M
Mark Adler 已提交
80

M
Mark Adler 已提交
81 82
libz.a: $(OBJS) $(OBJA)
	$(AR) $@ $(OBJS) $(OBJA)
M
Mark Adler 已提交
83
	-@ ($(RANLIB) $@ || true) >/dev/null 2>&1
M
Mark Adler 已提交
84

M
Mark Adler 已提交
85 86 87 88 89 90
match.o: match.S
	$(CPP) match.S > _match.s
	$(CC) -c _match.s
	mv _match.o match.o
	rm -f _match.s

M
Mark Adler 已提交
91
$(SHAREDLIB).$(VER): $(OBJS)
M
Mark Adler 已提交
92
	$(LDSHARED) -o $@ $(OBJS)
M
Mark Adler 已提交
93 94 95
	rm -f $(SHAREDLIB) $(SHAREDLIB).1
	ln -s $@ $(SHAREDLIB)
	ln -s $@ $(SHAREDLIB).1
M
Mark Adler 已提交
96 97 98 99 100 101 102 103

example: example.o $(LIBS)
	$(CC) $(CFLAGS) -o $@ example.o $(LDFLAGS)

minigzip: minigzip.o $(LIBS)
	$(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS)

install: $(LIBS)
M
Mark Adler 已提交
104
	-@if [ ! -d $(exec_prefix) ]; then mkdir $(exec_prefix); fi
M
Mark Adler 已提交
105
	-@if [ ! -d $(includedir)  ]; then mkdir $(includedir); fi
M
Mark Adler 已提交
106 107
	-@if [ ! -d $(libdir)      ]; then mkdir $(libdir); fi
	-@if [ ! -d $(man3dir)     ]; then mkdir $(man3dir); fi
M
Mark Adler 已提交
108 109 110 111 112 113
	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 \
M
Mark Adler 已提交
114 115 116 117
	  rm -f $(SHAREDLIB) $(SHAREDLIB).1; \
	  ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB); \
	  ln -s $(SHAREDLIB).$(VER) $(SHAREDLIB).1; \
	  (ldconfig || true)  >/dev/null 2>&1; \
M
Mark Adler 已提交
118
	fi
M
Mark Adler 已提交
119 120
	cp zlib.3 $(man3dir)
	chmod 644 $(man3dir)/zlib.3
M
Mark Adler 已提交
121
# The ranlib in install is needed on NeXTSTEP which checks file times
M
Mark Adler 已提交
122
# ldconfig is for Linux
M
Mark Adler 已提交
123 124

uninstall:
M
Mark Adler 已提交
125
	cd $(includedir); \
M
Mark Adler 已提交
126 127 128 129 130
	v=$(VER); \
	if test -f zlib.h; then \
	  v=`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`; \
          rm -f zlib.h zconf.h; \
	fi; \
M
Mark Adler 已提交
131
	cd $(libdir); rm -f libz.a; \
M
Mark Adler 已提交
132 133
	if test -f $(SHAREDLIB).$$v; then \
	  rm -f $(SHAREDLIB).$$v $(SHAREDLIB) $(SHAREDLIB).1; \
M
Mark Adler 已提交
134
	fi
M
Mark Adler 已提交
135
	cd $(man3dir); rm -f zlib.3
M
Mark Adler 已提交
136

M
Mark Adler 已提交
137
mostlyclean: clean
M
Mark Adler 已提交
138
clean:
M
Mark Adler 已提交
139 140
	rm -f *.o *~ example minigzip libz.a libz.so* foo.gz so_locations \
	   _match.s maketree
M
Mark Adler 已提交
141

M
Mark Adler 已提交
142
maintainer-clean: distclean
M
Mark Adler 已提交
143
distclean: clean
M
Mark Adler 已提交
144 145
	cp -p Makefile.in Makefile
	cp -p zconf.in.h zconf.h
M
Mark Adler 已提交
146
	rm -f .DS_Store
M
Mark Adler 已提交
147

M
Mark Adler 已提交
148
zip:
M
Mark Adler 已提交
149
	echo Warning: this has not been updated for zlib 1.2.0 -- do not use
M
Mark Adler 已提交
150
	mv Makefile Makefile~; cp -p Makefile.in Makefile
M
Mark Adler 已提交
151
	rm -f test.c ztest*.c contrib/minizip/test.zip
M
Mark Adler 已提交
152 153
	v=`sed -n -e 's/\.//g' -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\
	zip -ul9 zlib$$v $(DISTFILES)
M
Mark Adler 已提交
154 155 156
	mv Makefile~ Makefile

dist:
M
Mark Adler 已提交
157
	echo Warning: this has not been updated for zlib 1.2.0 -- do not use
M
Mark Adler 已提交
158
	mv Makefile Makefile~; cp -p Makefile.in Makefile
M
Mark Adler 已提交
159
	rm -f test.c ztest*.c contrib/minizip/test.zip
M
Mark Adler 已提交
160 161 162 163 164 165 166 167 168 169
	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 $(TAR) chofz $$d/$$d.tar.gz $$files; \
	if test ! -d $$d; then rm -f $$d; fi
	mv Makefile~ Makefile

M
Mark Adler 已提交
170
tags:
M
Mark Adler 已提交
171 172 173 174 175 176 177 178 179
	etags *.[ch]

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
M
Mark Adler 已提交
180
crc32.o: crc32.h zlib.h zconf.h
M
Mark Adler 已提交
181 182 183
deflate.o: deflate.h zutil.h zlib.h zconf.h
example.o: zlib.h zconf.h
gzio.o: zutil.h zlib.h zconf.h
M
Mark Adler 已提交
184 185 186
inffast.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
inflate.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
infback.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.h
M
Mark Adler 已提交
187
inftrees.o: zutil.h zlib.h zconf.h inftrees.h
M
Mark Adler 已提交
188
minigzip.o: zlib.h zconf.h
M
Mark Adler 已提交
189
trees.o: deflate.h zutil.h zlib.h zconf.h trees.h
M
Mark Adler 已提交
190
uncompr.o: zlib.h zconf.h
M
Mark Adler 已提交
191
zutil.o: zutil.h zlib.h zconf.h