📄 makefile.msc
字号:
# Makefile for zlib# Microsoft C 5.1 or later# To use, do "make makefile.msc"# To compile in small model, set below: MODEL=S# 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.# ------------- Microsoft C 5.1 and later -------------# 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=LCC=clCFLAGS=-nologo -A$(MODEL) -G$(CPU_TYP) -W3 -Oait -Gs $(LOC)#-Ox generates bad code with MSC 5.1LIB_CFLAGS=-Zl $(CFLAGS)LD=linkLDFLAGS=/noi/e/st:0x1500/noe/farcall/packcode# "/farcall/packcode" are only useful for `large code' memory models# but should be a "no-op" for small code models.O=.obj# variablesOBJ1 = adler32$(O) compress$(O) crc32$(O) gzio$(O) uncompr$(O) deflate$(O) \ trees$(O)OBJP1 = adler32$(O)+compress$(O)+crc32$(O)+gzio$(O)+uncompr$(O)+deflate$(O)+\ trees$(O)OBJ2 = zutil$(O) inflate$(O) infblock$(O) inftrees$(O) infcodes$(O) \ infutil$(O) inffast$(O)OBJP2 = zutil$(O)+inflate$(O)+infblock$(O)+inftrees$(O)+infcodes$(O)+\ infutil$(O)+inffast$(O)ZLIB_H = zlib.h zconf.hZUTIL_H = zutil.h $(ZLIB_H)ZLIB_LIB = zlib_$(MODEL).liball: $(ZLIB_LIB) example.exe minigzip.exe# individual dependencies and action rules:adler32.obj: adler32.c $(ZLIB_H) $(CC) -c $(LIB_CFLAGS) $*.ccompress.obj: compress.c $(ZLIB_H) $(CC) -c $(LIB_CFLAGS) $*.ccrc32.obj: crc32.c $(ZLIB_H) $(CC) -c $(LIB_CFLAGS) $*.cdeflate.obj: deflate.c deflate.h $(ZUTIL_H) $(CC) -c $(LIB_CFLAGS) $*.cgzio.obj: gzio.c $(ZUTIL_H) $(CC) -c $(LIB_CFLAGS) $*.cinfblock.obj: infblock.c $(ZUTIL_H) infblock.h inftrees.h infcodes.h infutil.h $(CC) -c $(LIB_CFLAGS) $*.cinfcodes.obj: infcodes.c $(ZUTIL_H) inftrees.h infutil.h infcodes.h inffast.h $(CC) -c $(LIB_CFLAGS) $*.cinflate.obj: inflate.c $(ZUTIL_H) infblock.h $(CC) -c $(LIB_CFLAGS) $*.cinftrees.obj: inftrees.c $(ZUTIL_H) inftrees.h $(CC) -c $(LIB_CFLAGS) $*.cinfutil.obj: infutil.c $(ZUTIL_H) inftrees.h infutil.h $(CC) -c $(LIB_CFLAGS) $*.cinffast.obj: inffast.c $(ZUTIL_H) inftrees.h infutil.h inffast.h $(CC) -c $(LIB_CFLAGS) $*.ctrees.obj: trees.c deflate.h $(ZUTIL_H) $(CC) -c $(LIB_CFLAGS) $*.cuncompr.obj: uncompr.c $(ZLIB_H) $(CC) -c $(LIB_CFLAGS) $*.czutil.obj: zutil.c $(ZUTIL_H) $(CC) -c $(LIB_CFLAGS) $*.cexample.obj: example.c $(ZLIB_H) $(CC) -c $(CFLAGS) $*.cminigzip.obj: minigzip.c $(ZLIB_H) $(CC) -c $(CFLAGS) $*.c# we must cut the command line to fit in the MS/DOS 128 byte limit:$(ZLIB_LIB): $(OBJ1) $(OBJ2) if exist $(ZLIB_LIB) del $(ZLIB_LIB) lib $(ZLIB_LIB) $(OBJ1); lib $(ZLIB_LIB) $(OBJ2);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 -d #clean:# del *.obj# del *.exe
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -