⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.msc

📁 一些关于HTTP协议处理的文档,还包括了gzip包(它是用来解压缩HTTP传送的压缩数据)
💻 MSC
字号:
# Makefile for gzip# Microsoft C 5.1 or 6.0.# To use, do "make makefile.msc"# WARNING: the small model is not supported. The compact model is used# here. If you want to use the large model, add -D__LARGE__ to ASFLAGS# Add -DSMALL_MEM to CFLAGS if you wish to reduce the memory# requirements. Add -DNO_ASM to CFLAGS and remove match.obj from OBJI if# you do not have masm.# ------------- Microsoft C 5.1 and later -------------MODEL=-ACFP=CFLAGS=-Ox -nologo $(MODEL)BFLAGS=-Oait -Gs -nologo $(MODEL)# BFLAGS are the 'bug workaround' flags.CC=clLD=linkLDFLAGS=/e/st:0x1000/noe#     If you use lzexe as recommended, remove /e from LDFLAGSAS=masm#     For MSC 6.0, use: AS=ml ASFLAGS=-ml -t# Add -DDYN_ALLOC to ASFLAGS if you have defined it in tailor.h or CFLAGSLIB = c:\c51\lib# ------------- Common declarations:STRIP=rem#    If you don't have lzexe, get it (by ftp on wuarchive.wustl.edu#    in /mirrors/msdos/filutl/lzexe91e.zip). Then define:#STRIP=lzexe#    Or if you've registered PKLITE, then define:#STRIP=pklite#    This makes a big difference in .exe size (and possibly load time)O=.objOBJA=match$(O) $(LIB)\setargv$(O)# ------------- Used by install rule# set BIN to the directory you want to install the executables toBIN = c:\bin# variablesOBJ1 = gzip$(O) zip$(O) deflate$(O) trees$(O) bits$(O) unzip$(O) inflate$(O) \       util$(O)OBJ2 = crypt$(O) lzw$(O) unlzw$(O) unpack$(O) unlzh$(O) getopt$(O) $(OBJA)gzip.obj: gzip.c gzip.h tailor.h crypt.h revision.h lzw.h	$(CC) -c $(CFLAGS) $*.czip.obj: zip.c gzip.h tailor.h crypt.h	$(CC) -c $(CFLAGS) $*.cdeflate.obj: deflate.c gzip.h tailor.h	$(CC) -c $(CFLAGS) $*.ctrees.obj: trees.c gzip.h tailor.h	$(CC) -c $(CFLAGS) $*.cbits.obj: bits.c gzip.h tailor.h crypt.h	$(CC) -c $(CFLAGS) $*.cunzip.obj: unzip.c gzip.h tailor.h crypt.h	$(CC) -c $(CFLAGS) $*.cinflate.obj: inflate.c gzip.h tailor.h	$(CC) -c $(CFLAGS) $*.cutil.obj: util.c gzip.h tailor.h crypt.h	$(CC) -c $(BFLAGS) $*.ccrypt.obj: crypt.c gzip.h tailor.h crypt.h	$(CC) -c $(CFLAGS) $*.clzw.obj: lzw.c gzip.h tailor.h	$(CC) -c $(CFLAGS) $*.cunlzw.obj: unlzw.c gzip.h tailor.h lzw.h	$(CC) -c $(CFLAGS) $*.cunpack.obj: unpack.c gzip.h tailor.h	$(CC) -c $(CFLAGS) $*.cunlzh.obj: unlzh.c gzip.h tailor.h	$(CC) -c $(BFLAGS) $*.cgetopt.obj: getopt.c getopt.h	$(CC) -c $(CFLAGS) $*.cmatch.obj:	msdos\match.asm	$(AS) $(ASFLAGS) msdos\match, match;# we must cut the command line to fit in the MS/DOS 128 byte limit:gzip.exe: $(OBJ1) $(OBJ2)	echo $(OBJ1)+ > gzip.rsp	echo $(OBJ2); >> gzip.rsp	$(LD) $(LDFLAGS) @gzip.rsp	del gzip.rsp	$(STRIP) gzip.exeinstall: gzip.exe	copy /b gzip.exe $(BIN)	copy /b gzip.exe $(BIN)\gunzip.exe#clean:#	del *.obj#	del *.exe

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -