📄 makefile
字号:
# Makefile for zlib# Copyright (C) 1995-2002 Jean-loup Gailly.# For conditions of distribution and use, see copyright notice in zlib.h # Makefile for Jasper targetCC=$(CROSS)gccCFLAGS=-O#CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7#CFLAGS=-g -DDEBUG#CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \# -Wstrict-prototypes -Wmissing-prototypesCPP=$(CC) -ELIBS=libz.aAR=ar rcRANLIB=ranlibOBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \ zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.oOBJA =# to use the asm code: make OBJA=match.oall: libz.alibz.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.sclean: rm -f *.o *~ example minigzip libz.a libz.so* foo.gz so_locations \ _match.s maketreedistclean: cleantags: 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: zlib.h zconf.hdeflate.o: deflate.h zutil.h zlib.h zconf.hexample.o: zlib.h zconf.hgzio.o: zutil.h zlib.h zconf.hinfblock.o: infblock.h inftrees.h infcodes.h infutil.h zutil.h zlib.h zconf.hinfcodes.o: zutil.h zlib.h zconf.hinfcodes.o: inftrees.h infblock.h infcodes.h infutil.h inffast.hinffast.o: zutil.h zlib.h zconf.h inftrees.hinffast.o: infblock.h infcodes.h infutil.h inffast.hinflate.o: zutil.h zlib.h zconf.h infblock.hinftrees.o: zutil.h zlib.h zconf.h inftrees.hinfutil.o: zutil.h zlib.h zconf.h infblock.h inftrees.h infcodes.h infutil.hminigzip.o: zlib.h zconf.h trees.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 + -