📄 makefile
字号:
# Makefile for zlib# Copyright (C) 1995-2005 Jean-loup Gailly.# For conditions of distribution and use, see copyright notice in zlib.h# 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 use the asm code, type:# cp contrib/asm?86/match.S ./match.S# make LOC=-DASMV OBJA=match.o# 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=$HOMECC=ccCFLAGS=-O#CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7#CFLAGS=-g -DDEBUG#CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \# -Wstrict-prototypes -Wmissing-prototypesLDFLAGS=libz.aLDSHARED=$(CC)CPP=$(CC) -ELIBS=libz.aSHAREDLIB=libz.soSHAREDLIBV=libz.so.1.2.3SHAREDLIBM=libz.so.1AR=ar rcRANLIB=ranlibTAR=tarSHELL=/bin/shEXE=prefix = /usr/localexec_prefix = ${prefix}libdir = ${exec_prefix}/libincludedir = ${prefix}/includemandir = ${prefix}/share/manman3dir = ${mandir}/man3OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \ zutil.o inflate.o infback.o inftrees.o inffast.oOBJA =# to use the asm code: make OBJA=match.oTEST_OBJS = example.o minigzip.oall: example$(EXE) minigzip$(EXE)check: testtest: all @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 ***'; \ filibz.a: $(OBJS) $(OBJA) $(AR) $@ $(OBJS) $(OBJA) -@ ($(RANLIB) $@ || true) >/dev/null 2>&1match.o: match.S $(CPP) match.S > _match.s $(CC) -c _match.s mv _match.o match.o rm -f _match.s$(SHAREDLIBV): $(OBJS) $(LDSHARED) -o $@ $(OBJS) rm -f $(SHAREDLIB) $(SHAREDLIBM) ln -s $@ $(SHAREDLIB) ln -s $@ $(SHAREDLIBM)example$(EXE): example.o $(LIBS) $(CC) $(CFLAGS) -o $@ example.o $(LDFLAGS)minigzip$(EXE): minigzip.o $(LIBS) $(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS)install: $(LIBS) -@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 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 $(SHAREDLIBV); then \ rm -f $(SHAREDLIB) $(SHAREDLIBM); \ ln -s $(SHAREDLIBV) $(SHAREDLIB); \ ln -s $(SHAREDLIBV) $(SHAREDLIBM); \ (ldconfig || true) >/dev/null 2>&1; \ fi cp zlib.3 $(man3dir) chmod 644 $(man3dir)/zlib.3# The ranlib in install is needed on NeXTSTEP which checks file times# ldconfig is for Linuxuninstall: cd $(includedir); \ cd $(libdir); rm -f libz.a; \ if test -f $(SHAREDLIBV); then \ rm -f $(SHAREDLIBV) $(SHAREDLIB) $(SHAREDLIBM); \ fi cd $(man3dir); rm -f zlib.3mostlyclean: cleanclean: rm -f *.o *~ example$(EXE) minigzip$(EXE) \ libz.* foo.gz so_locations \ _match.s maketree contrib/infback9/*.omaintainer-clean: distcleandistclean: clean cp -p Makefile.in Makefile cp -p zconf.in.h zconf.h rm -f .DS_Storetags: etags *.[ch]depend: makedepend -- $(CFLAGS) -- *.[ch]# DO NOT DELETE THIS LINE -- make depend depends on it.adler32.o: zlib.h zconf.hcompress.o: zlib.h zconf.hcrc32.o: crc32.h zlib.h zconf.hdeflate.o: deflate.h zutil.h zlib.h zconf.hexample.o: zlib.h zconf.hgzio.o: zutil.h zlib.h zconf.hinffast.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.hinflate.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.hinfback.o: zutil.h zlib.h zconf.h inftrees.h inflate.h inffast.hinftrees.o: zutil.h zlib.h zconf.h inftrees.hminigzip.o: zlib.h zconf.htrees.o: deflate.h zutil.h zlib.h zconf.h trees.huncompr.o: zlib.h zconf.hzutil.o: zutil.h zlib.h zconf.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -