📄 makefile.wat
字号:
# WMAKE makefile for Windows 95 and Windows NT (Intel only)# using Watcom C/C++ v11.0+, by Paul Kienitz, last revised 26 Apr 98.# Makes UnZip.exe, fUnZip.exe, and UnZipSFX.exe.## Invoke from UnZip source dir with "WMAKE -F WIN32\MAKEFILE.WAT [targets]"# To build with debug info use "WMAKE DEBUG=1 ..."# To build with no assembly modules use "WMAKE NOASM=1 ..."# To support unshrinking and unreducing use "WMAKE LAWSUIT=1 ..."## Other options to be fed to the compiler can be specified in an environment# variable called LOCAL_UNZIP.variation = $(%LOCAL_UNZIP)# Stifle annoying "Delete this file?" questions when errors occur:.ERASE.EXTENSIONS:.EXTENSIONS: .exe .obj .obx .c .h .asm# We maintain multiple sets of object files in different directories so that# we can compile msdos, dos/4gw or pmode/w, and win32 versions of UnZip without# their object files interacting. The following var must be a directory name# ending with a backslash. All object file names must include this macro# at the beginning, for example "$(O)foo.obj".!ifdef DEBUGO = od32w\ # comment here so backslash won't continue the line!elseO = ob32w\ # likewise!endif!ifdef LAWSUITcvars = $+$(cvars)$- -DUSE_SMITH_CODE -DUSE_UNSHRINKavars = $+$(avars)$- -DUSE_SMITH_CODE -DUSE_UNSHRINK# "$+$(foo)$-" means expand foo as it has been defined up to now; normally,# this Make defers inner expansion until the outer macro is expanded.!endif# The assembly hot-spot code in crc_i386.asm is optional. This section# controls its usage.!ifdef NOASMcrcob = $(O)crc32.obj!else # !NOASMcvars = $+$(cvars)$- -DASM_CRCcrcob = $(O)crc_i386.obj!endif# Our object files. OBJS is for UnZip, OBJX for UnZipSFX, OBJF for fUnZip:OBJS1 = $(O)unzip.obj $(crcob) $(O)crctab.obj $(O)crypt.obj $(O)envargs.objOBJS2 = $(O)explode.obj $(O)extract.obj $(O)fileio.obj $(O)globals.objOBJS3 = $(O)inflate.obj $(O)list.obj $(O)match.obj $(O)process.objOBJS4 = $(O)ttyio.obj $(O)unreduce.obj $(O)unshrink.obj $(O)zipinfo.objOBJS = $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(O)win32.obj $(O)nt.objOBJX1 = $(O)unzip.obx $(crcob) $(O)crctab.obx $(O)crypt.obx $(O)extract.obxOBJX2 = $(O)fileio.obx $(O)globals.obx $(O)inflate.obx $(O)match.obxOBJX3 = $(O)process.obx $(O)ttyio.obxOBJX = $(OBJX1) $(OBJX2) $(OBJX3) $(O)win32.obx $(O)nt.obxOBJF1 = $(O)funzip.obj $(crcob) $(O)cryptf.obj $(O)globalsf.objOBJF = $(OBJF1) $(O)inflatef.obj $(O)ttyiof.obj $(O)win32f.objUNZIP_H = unzip.h unzpriv.h globals.h win32\w32cfg.h# Now we have to pick out the proper compiler and options for it.cc = wcc386link = wlinkasm = wasm# Use Pentium Pro timings, register args, static strings in code, high strictness:cflags = -bt=NT -6r -zt -zq -wxaflags = -bt=NT -mf -3 -zqlflags = sys NTcvars = $+$(cvars)$- -DWIN32 $(variation)avars = $+$(avars)$- $(variation)# Specify optimizations, or a nonoptimized debugging version:!ifdef DEBUGcdebug = -od -d2cdebux = -od -d2ldebug = d w all op symf!elsecdebug = -s -obhikl+rt -oe=100 -zp8cdebux = -s -obhiklrs# -oa helps slightly but might be dangerous.ldebug = op el!endif# How to compile sources:.c.obx: $(cc) $(cdebux) $(cflags) $(cvars) -DSFX $[@ -fo=$@.c.obj: $(cc) $(cdebug) $(cflags) $(cvars) $[@ -fo=$@# Here we go! By default, make all targets:all: UnZip.exe fUnZip.exe UnZipSFX.exe# Convenient shorthand options for single targets:u: UnZip.exe .SYMBOLICf: fUnZip.exe .SYMBOLICx: UnZipSFX.exe .SYMBOLICUnZip.exe: $(OBJS) $(link) $(lflags) $(ldebug) name $@ file {$(OBJS)}UnZipSFX.exe: $(OBJX) $(link) $(lflags) $(ldebug) name $@ file {$(OBJX)}fUnZip.exe: $(OBJF) $(link) $(lflags) $(ldebug) name $@ file {$(OBJF)}# Source dependencies:# generic (UnZip, fUnZip):$(O)crc32.obj: crc32.c $(UNZIP_H) zip.h$(O)crctab.obj: crctab.c $(UNZIP_H) zip.h$(O)crypt.obj: crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h$(O)envargs.obj: envargs.c $(UNZIP_H)$(O)explode.obj: explode.c $(UNZIP_H)$(O)extract.obj: extract.c $(UNZIP_H) crypt.h$(O)fileio.obj: fileio.c $(UNZIP_H) crypt.h ttyio.h ebcdic.h$(O)funzip.obj: funzip.c $(UNZIP_H) crypt.h ttyio.h tables.h$(O)globals.obj: globals.c $(UNZIP_H)$(O)inflate.obj: inflate.c inflate.h $(UNZIP_H)$(O)list.obj: list.c $(UNZIP_H)$(O)match.obj: match.c $(UNZIP_H)$(O)process.obj: process.c $(UNZIP_H)$(O)ttyio.obj: ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h$(O)unreduce.obj: unreduce.c $(UNZIP_H)$(O)unshrink.obj: unshrink.c $(UNZIP_H)$(O)unzip.obj: unzip.c $(UNZIP_H) crypt.h version.h consts.h$(O)zipinfo.obj: zipinfo.c $(UNZIP_H)# UnZipSFX variants:$(O)crc32.obx: crc32.c $(UNZIP_H) zip.h$(O)crctab.obx: crctab.c $(UNZIP_H) zip.h$(O)crypt.obx: crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h$(O)extract.obx: extract.c $(UNZIP_H) crypt.h$(O)fileio.obx: fileio.c $(UNZIP_H) crypt.h ttyio.h ebcdic.h$(O)globals.obx: globals.c $(UNZIP_H)$(O)inflate.obx: inflate.c inflate.h $(UNZIP_H)$(O)match.obx: match.c $(UNZIP_H)$(O)process.obx: process.c $(UNZIP_H)$(O)ttyio.obx: ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h$(O)unzip.obx: unzip.c $(UNZIP_H) crypt.h version.h consts.h# Special case object files:$(O)win32.obj: win32\win32.c $(UNZIP_H) $(cc) $(cdebug) $(cflags) $(cvars) win32\win32.c -fo=$@$(O)win32.obx: win32\win32.c $(UNZIP_H) $(cc) $(cdebux) $(cflags) $(cvars) -DSFX win32\win32.c -fo=$@$(O)nt.obj: win32\nt.c $(UNZIP_H) win32\nt.h $(cc) $(cdebug) $(cflags) $(cvars) win32\nt.c -fo=$@$(O)nt.obx: win32\nt.c $(UNZIP_H) win32\nt.h $(cc) $(cdebux) $(cflags) $(cvars) -DSFX win32\nt.c -fo=$@$(O)crc_i386.obj: win32\crc_i386.asm $(asm) $(aflags) $(avars) win32\crc_i386.asm -fo=$@# Variant object files for fUnZip:$(O)cryptf.obj: crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h $(cc) $(cdebug) $(cflags) $(cvars) -DFUNZIP crypt.c -fo=$@$(O)globalsf.obj: globals.c $(UNZIP_H) $(cc) $(cdebug) $(cflags) $(cvars) -DFUNZIP globals.c -fo=$@$(O)inflatef.obj: inflate.c inflate.h $(UNZIP_H) crypt.h $(cc) $(cdebug) $(cflags) $(cvars) -DFUNZIP inflate.c -fo=$@$(O)ttyiof.obj: ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h $(cc) $(cdebug) $(cflags) $(cvars) -DFUNZIP ttyio.c -fo=$@$(O)win32f.obj: win32\win32.c $(UNZIP_H) $(cc) $(cdebux) $(cflags) $(cvars) -DFUNZIP win32\win32.c -fo=$@# Unwanted file removal:clean: .SYMBOLIC del $(O)*.ob?cleaner: clean .SYMBOLIC del UnZip.exe del fUnZip.exe del UnZipSFX.exe
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -