A massively spiffy yet delicately unobtrusive compression library. (grpc依赖)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

155 lines
4.0 KiB

13 years ago
# Makefile for zlib
13 years ago
# Copyright (C) 1995-2003 Jean-loup Gailly.
13 years ago
# For conditions of distribution and use, see copyright notice in zlib.h
13 years ago
13 years ago
# To compile and test, type:
13 years ago
# ./configure; make test
13 years ago
# The call of configure is optional if you don't have special requirements
13 years ago
# If you wish to build zlib as a shared library, use: ./configure -s
13 years ago
13 years ago
# To use the asm code, type:
# cp contrib/asm?86/match.S ./match.S
# make LOC=-DASMV OBJA=match.o
13 years ago
# 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
13 years ago
CC=cc
13 years ago
13 years ago
CFLAGS=-O
13 years ago
#CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
13 years ago
#CFLAGS=-g -DDEBUG
13 years ago
#CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \
# -Wstrict-prototypes -Wmissing-prototypes
13 years ago
LDFLAGS=libz.a
13 years ago
LDSHARED=$(CC)
13 years ago
CPP=$(CC) -E
13 years ago
13 years ago
LIBS=libz.a
13 years ago
SHAREDLIB=libz.so
13 years ago
SHAREDLIBV=libz.so.1.2.2
13 years ago
SHAREDLIBM=libz.so.1
13 years ago
AR=ar rc
13 years ago
RANLIB=ranlib
13 years ago
TAR=tar
13 years ago
SHELL=/bin/sh
13 years ago
EXE=
13 years ago
13 years ago
prefix = /usr/local
exec_prefix = ${prefix}
13 years ago
libdir = ${exec_prefix}/lib
includedir = ${prefix}/include
13 years ago
mandir = ${prefix}/share/man
man3dir = ${mandir}/man3
13 years ago
13 years ago
OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \
13 years ago
zutil.o inflate.o infback.o inftrees.o inffast.o
13 years ago
13 years ago
OBJA =
# to use the asm code: make OBJA=match.o
13 years ago
TEST_OBJS = example.o minigzip.o
13 years ago
13 years ago
all: example$(EXE) minigzip$(EXE)
13 years ago
13 years ago
check: test
13 years ago
test: all
13 years ago
@LD_LIBRARY_PATH=.:$(LD_LIBRARY_PATH) ; export LD_LIBRARY_PATH; \
13 years ago
echo hello world | ./minigzip | ./minigzip -d || \
echo ' *** minigzip test FAILED ***' ; \
if ./example; then \
echo ' *** zlib test OK ***'; \
else \
echo ' *** zlib test FAILED ***'; \
fi
13 years ago
13 years ago
libz.a: $(OBJS) $(OBJA)
$(AR) $@ $(OBJS) $(OBJA)
13 years ago
-@ ($(RANLIB) $@ || true) >/dev/null 2>&1
13 years ago
13 years ago
match.o: match.S
$(CPP) match.S > _match.s
$(CC) -c _match.s
mv _match.o match.o
rm -f _match.s
13 years ago
$(SHAREDLIBV): $(OBJS)
13 years ago
$(LDSHARED) -o $@ $(OBJS)
13 years ago
rm -f $(SHAREDLIB) $(SHAREDLIBM)
13 years ago
ln -s $@ $(SHAREDLIB)
13 years ago
ln -s $@ $(SHAREDLIBM)
13 years ago
13 years ago
example$(EXE): example.o $(LIBS)
13 years ago
$(CC) $(CFLAGS) -o $@ example.o $(LDFLAGS)
13 years ago
minigzip$(EXE): minigzip.o $(LIBS)
13 years ago
$(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS)
13 years ago
install: $(LIBS)
13 years ago
-@if [ ! -d $(exec_prefix) ]; then mkdir -p $(exec_prefix); fi
-@if [ ! -d $(includedir) ]; then mkdir -p $(includedir); fi
-@if [ ! -d $(libdir) ]; then mkdir -p $(libdir); fi
-@if [ ! -d $(man3dir) ]; then mkdir -p $(man3dir); fi
13 years ago
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
13 years ago
cd $(libdir); if test -f $(SHAREDLIBV); then \
rm -f $(SHAREDLIB) $(SHAREDLIBM); \
ln -s $(SHAREDLIBV) $(SHAREDLIB); \
ln -s $(SHAREDLIBV) $(SHAREDLIBM); \
13 years ago
(ldconfig || true) >/dev/null 2>&1; \
13 years ago
fi
13 years ago
cp zlib.3 $(man3dir)
chmod 644 $(man3dir)/zlib.3
13 years ago
# The ranlib in install is needed on NeXTSTEP which checks file times
13 years ago
# ldconfig is for Linux
13 years ago
uninstall:
13 years ago
cd $(includedir); \
cd $(libdir); rm -f libz.a; \
13 years ago
if test -f $(SHAREDLIBV); then \
rm -f $(SHAREDLIBV) $(SHAREDLIB) $(SHAREDLIBM); \
13 years ago
fi
13 years ago
cd $(man3dir); rm -f zlib.3
13 years ago
13 years ago
mostlyclean: clean
13 years ago
clean:
13 years ago
rm -f *.o *~ example$(EXE) minigzip$(EXE) \
libz.* foo.gz so_locations \
13 years ago
_match.s maketree contrib/infback9/*.o
13 years ago
13 years ago
maintainer-clean: distclean
13 years ago
distclean: clean
13 years ago
cp -p Makefile.in Makefile
cp -p zconf.in.h zconf.h
13 years ago
rm -f .DS_Store
13 years ago
13 years ago
tags:
13 years ago
etags *.[ch]
13 years ago
13 years ago
depend:
makedepend -- $(CFLAGS) -- *.[ch]
13 years ago
# DO NOT DELETE THIS LINE -- make depend depends on it.
13 years ago
adler32.o: zlib.h zconf.h
13 years ago
compress.o: zlib.h zconf.h
13 years ago
crc32.o: crc32.h zlib.h zconf.h
13 years ago
deflate.o: deflate.h zutil.h zlib.h zconf.h
example.o: zlib.h zconf.h
gzio.o: zutil.h zlib.h zconf.h
13 years ago
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
13 years ago
inftrees.o: zutil.h zlib.h zconf.h inftrees.h
13 years ago
minigzip.o: zlib.h zconf.h
13 years ago
trees.o: deflate.h zutil.h zlib.h zconf.h trees.h
13 years ago
uncompr.o: zlib.h zconf.h
13 years ago
zutil.o: zutil.h zlib.h zconf.h