📄 makefile.bor
字号:
# Makefile for zlib# Borland C++# Last updated: 15-Mar-2003# To use, do "make -fmakefile.bor"# To compile in small model, set below: MODEL=s# WARNING: the small model is supported but only for small values of# MAX_WBITS and MAX_MEM_LEVEL. For example:# -DMAX_WBITS=11 -DDEF_WBITS=11 -DMAX_MEM_LEVEL=3# If you wish to reduce the memory requirements (default 256K for big# objects plus a few K), you can add to the LOC macro below:# -DMAX_MEM_LEVEL=7 -DMAX_WBITS=14# See zconf.h for details about the memory requirements.# ------------ Turbo C++, Borland C++ ------------# Optional nonstandard preprocessor flags (e.g. -DMAX_MEM_LEVEL=7)# should be added to the environment via "set LOCAL_ZLIB=-DFOO" or added# to the declaration of LOC here:LOC = $(LOCAL_ZLIB)# type for CPU required: 0: 8086, 1: 80186, 2: 80286, 3: 80386, etc.CPU_TYP = 0# memory model: one of s, m, c, l (small, medium, compact, large)MODEL=l# replace bcc with tcc for Turbo C++ 1.0, with bcc32 for the 32 bit versionCC=bccLD=bccAR=tlib# compiler flags# replace "-O2" by "-O -G -a -d" for Turbo C++ 1.0CFLAGS=-O2 -Z -m$(MODEL) $(LOC)LDFLAGS=-m$(MODEL) -f-# variablesZLIB_LIB = zlib_$(MODEL).libOBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzio.obj infback.objOBJ2 = inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.objOBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzio.obj+infback.objOBJP2 = +inffast.obj+inflate.obj+inftrees.obj+trees.obj+uncompr.obj+zutil.obj# targetsall: $(ZLIB_LIB) example.exe minigzip.exe.c.obj: $(CC) -c $(CFLAGS) $*.cadler32.obj: adler32.c zlib.h zconf.hcompress.obj: compress.c zlib.h zconf.hcrc32.obj: crc32.c zlib.h zconf.h crc32.hdeflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.hgzio.obj: gzio.c zutil.h zlib.h zconf.hinfback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h \ inffast.h inffixed.hinffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h \ inffast.hinflate.obj: inflate.c zutil.h zlib.h zconf.h inftrees.h inflate.h \ inffast.h inffixed.hinftrees.obj: inftrees.c zutil.h zlib.h zconf.h inftrees.htrees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.huncompr.obj: uncompr.c zlib.h zconf.hzutil.obj: zutil.c zutil.h zlib.h zconf.hexample.obj: example.c zlib.h zconf.hminigzip.obj: minigzip.c zlib.h zconf.h# the command line is cut to fit in the MS-DOS 128 byte limit:$(ZLIB_LIB): $(OBJ1) $(OBJ2) -del $(ZLIB_LIB) $(AR) $(ZLIB_LIB) $(OBJP1) $(AR) $(ZLIB_LIB) $(OBJP2)example.exe: example.obj $(ZLIB_LIB) $(LD) $(LDFLAGS) example.obj $(ZLIB_LIB)minigzip.exe: minigzip.obj $(ZLIB_LIB) $(LD) $(LDFLAGS) minigzip.obj $(ZLIB_LIB)test: example.exe minigzip.exe example echo hello world | minigzip | minigzip -dclean: -del *.obj -del *.lib -del *.exe -del zlib_*.bak -del foo.gz
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -