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

📄 makefile.azt

📁 zip压缩
💻 AZT
字号:
# Makefile for UnZip 5.5 using Manx Aztec C 5.2, last revised 13 Jan 02.# Define EXTRA=xxx on the Make command line for e.g. -dUSE_UNSHRINK.EXTRA =CC = ccVERNUMS = -d __VERSION__=5 -d __REVISION__=2CFLAGS = -ps -sabfmnpu -wcpr0u -d AMIGA $(EXTRA)# -ps means short ints, -sabfmnpu is optimizations, -wcpr0u is type checking# option flags MORE and ASM_* are now set in the Aztec section of amiga/amiga.h;# it's cleaner, and that way any changes forces a recompile.LD = lnLDFLAGS = +q -mLDLIBS = -lc16# linker arg -m suppresses warnings about overriding c.lib functionsOBJS = unzip.o envargs.o process.o extract.o \         explode.o unshrink.o unreduce.o inflate.o match.o zipinfo.o \         list.o globals.o crypt.o ttyio.o fileio.o crctab.o timezone.o \         amiga/amiga.o amiga/crc_68.o amiga/flate.oXOBJS = unzip.xo process.xo extract.xo inflate.xo match.xo \         globals.xo crypt.xo ttyio.xo fileio.xo crctab.xo timezone.xo \         amiga/amiga.xo amiga/crc_68.o amiga/flate.xoFOBJS = funzip.o inflate.fo crypt.fo ttyio.fo globals.fo \         amiga/filedate.fo amiga/crc_68.o amiga/flate.fo.c.o :	$(CC) -o $@ $(CFLAGS) $*.c.c.xo:	$(CC) -o $@ -d SFX $(CFLAGS) $*.c.c.fo:	$(CC) -o $@ -d FUNZIP $(CFLAGS) $*.call : UnZip UnZipSFX fUnZip MakeSFXu : UnZipf : fUnZipx : UnZipSFXm : MakeSFXUnZip :     $(OBJS)	$(LD) $(LDFLAGS) -o $@ $(OBJS) $(LDLIBS)UnZipSFX :  $(XOBJS) MakeSFX	$(LD) $(LDFLAGS) -o $@ $(XOBJS) $(LDLIBS)fUnZip :    $(FOBJS)	$(LD) $(LDFLAGS) -o $@ $(FOBJS) $(LDLIBS)MakeSFX :   amiga/makesfx.c	$(CC) $(CFLAGS) -o t:makesfx.o amiga/makesfx.c	$(LD) $(LDFLAGS) -o MakeSFX t:makesfx.o $(LDLIBS)	-@delete t:makesfx.oclean :	-delete $(OBJS)	-delete $(XOBJS)	-delete $(FOBJS)	-delete amiga/G_offs.a amiga/G_offs.fa amiga/gbloffs amiga/Fgbloffscleaner : clean	-delete UnZip fUnZip UnZipSFX MakeSFX$(OBJS) $(XOBJS) $(FOBJS) : unzip.h unzpriv.h globals.h \                             amiga/amiga.h amiga/z-stat.hcrypt.o crypt.fo timezone.o ttyio.o ttyio.fo : zip.hinflate.o inflate.fo : inflate.hfileio.o : ebcdic.hfunzip.o : tables.hcrypt.o crypt.fo crypt.xo ttyio.o ttyio.fo ttyio.xo : crypt.hunzip.o unzip.xo funzip.o : crypt.hfileio.o fileio.xo extract.o extract.xo : crypt.hinflate.o inflate.fo inflate.xo amiga/filedate.fo : crypt.hamiga/gbloffs amiga/Fgbloffs amiga/Xgbloffs : crypt.hcrypt.o crypt.fo crypt.xo ttyio.o ttyio.fo ttyio.xo : ttyio.hfunzip.o fileio.o fileio.xo : ttyio.htimezone.o timezone.xo amiga/amiga.o amiga/amiga.xo : timezone.hunzip.o unzip.xo : unzvers.h consts.h# Special case object files:amiga/amiga.o : amiga/filedate.c amiga/stat.c amiga/amiga.c unzvers.h	rx > env:VersionDate "say '""'translate(date('E'), '.', '/')'""'"	$(CC) -o amiga/amiga.o $(CFLAGS) $(VERNUMS) amiga/amiga.camiga/amiga.xo : amiga/filedate.c amiga/stat.c amiga/amiga.c unzvers.h	$(CC) -o amiga/amiga.xo $(CFLAGS) $(VERNUMS) -d SFX amiga/amiga.camiga/crc_68.o : amiga/crc_68.a	as -n -o amiga/crc_68.o amiga/crc_68.aamiga/flate.o : amiga/flate.a amiga/gbloffs	amiga/gbloffs > amiga/G_offs.a	as -n -o amiga/flate.o -eINT16 amiga/flate.aamiga/flate.fo : amiga/flate.a amiga/Fgbloffs	amiga/Fgbloffs > amiga/G_offs.a	as -n -o amiga/flate.fo -eINT16 -eAZTEC amiga/flate.aamiga/flate.xo : amiga/flate.a amiga/Xgbloffs	amiga/Xgbloffs > amiga/G_offs.a	as -n -o amiga/flate.xo -eINT16 amiga/flate.aamiga/gbloffs : gbloffs.c unzip.h unzpriv.h globals.h amiga/amiga.h crypt.h	$(CC) -o t:gbloffs.o $(CFLAGS) gbloffs.c	$(LD) $(LDFLAGS) -o amiga/gbloffs t:gbloffs.o $(LDLIBS)	-@delete t:gbloffs.oamiga/Fgbloffs : gbloffs.c unzip.h unzpriv.h globals.h amiga/amiga.h crypt.h	$(CC) -o t:gbloffs.o $(CFLAGS) -d FUNZIP gbloffs.c	$(LD) $(LDFLAGS) -o amiga/Fgbloffs t:gbloffs.o $(LDLIBS)	-@delete t:gbloffs.oamiga/Xgbloffs : gbloffs.c unzip.h unzpriv.h globals.h amiga/amiga.h crypt.h	$(CC) -o t:gbloffs.o $(CFLAGS) -d SFX gbloffs.c	$(LD) $(LDFLAGS) -o amiga/Xgbloffs t:gbloffs.o $(LDLIBS)	-@delete t:gbloffs.o

⌨️ 快捷键说明

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