📄 lmkfile
字号:
# Makefile for UnZip 4.2 using SAS/C 5.10a# [no crypt + no inflate]## Not tested since UnZip 4.1. May need to change directory names for stat.c# and utime.c.###################### MACRO DEFINITIONS ######################CC = lcCFLAGS = -O -DUNIX -v -m0t -cuaisfr -rrLD = blinkLDFLAGS = TO unzip FROM LIB:c.oLDFLAGS2 = LIB LIB:lc.lib LIB:amiga.libEXE =O = .oOBJS = unzip$O extract$O file_io$O mapname$O match$O misc$O\ unimplod$O unreduce$O unshrink$O utime$O stat$O################################################ BASIC COMPILE INSTRUCTIONS AND DEPENDENCIES ################################################.c$O : $(CC) -o$@ $(CFLAGS) $*.cunzip$(EXE): $(OBJS) $(LD) $(LDFLAGS) $(OBJS) $(LDFLAGS2)unzip$O: unzip.c unzip.hcrypt$O: crypt.c unzip.h zip.h # may or may not be in distributionextract$O: extract.c unzip.hfile_io$O: file_io.c unzip.hinflate$O: inflate.c unzip.h # may or may not be in distributionmapname$O: mapname.c unzip.hmatch$O: match.c unzip.hmisc$O: misc.c unzip.hunimplod$O: unimplod.c unzip.hunreduce$O: unreduce.c unzip.hunshrink$O: unshrink.c unzip.hstat$O: amiga/stat.c # may need to change or remove directory nameutime$O: amiga/utime.c # may need to change or remove directory name
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -