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

📄 makefile.gcc

📁 压缩算法的源代码
💻 GCC
字号:
# Makefile for UnZip 5.11 and later:  Human68K with gcc        NIIMI Satoshi## The original Makefile maybe works fine, but X68000 is too slow# to process it.  So I split out needed part.## Last revised:  10 Jul 94VPATH = HUMAN68KCC = gccCFLAGS = -Wall -O -I. -fomit-frame-pointer -fstrength-reduceLDFLAGS = -sLIBS = -lsignal -ldos -lmb# UnZipSFX flagsXC = -DSFX# fUnZip flagsFC = -DFUNZIP# object filesOBJS = unzip.o crypt.o envargs.o explode.o extract.o file_io.o inflate.o \	match.o unreduce.o unshrink.o zipinfo.o human68k.o options.oOBJX = unzipsfx.o crypt.o extract_.o file_io.o inflate.o match.o human68_.oOBJF = funzip.o crypt_.o inflate_.oUNZIPS = unzip.x unzipsfx.x funzip.x.c.o:	$(CC) $(CFLAGS) -I. -c $< -o $@# for debugging.c.s:	$(CC) $(CFLAGS) -c $< -o $@all:		unzipsunzips:		$(UNZIPS)docs:		$(DOCS)unzipsman:	unzips docsunzipsdocs:	unzips docsclean:	rm -f $(OBJS) $(OBJF) $(OBJX) $(UNZIPS)unzip.x: $(OBJS)	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)unzipsfx.x: $(OBJX)	$(CC) $(LDFLAGS) -o $@ $(OBJX) $(LIBS)funzip.x: $(OBJF)	$(CC) $(LDFLAGS) -o $@ $(OBJF) $(LIBS)crypt.o:	crypt.c unzip.h zip.h crypt.henvargs.o:	envargs.c unzip.hexplode.o:	explode.c unzip.hextract.o:	extract.c unzip.h crypt.hfile_io.o:	file_io.c unzip.h crypt.h tables.hfunzip.o:	funzip.c unzip.h crypt.h tables.hinflate.o:	inflate.c inflate.h unzip.hmatch.o:	match.c unzip.hunreduce.o:	unreduce.c unzip.hunshrink.o:	unshrink.c unzip.hunzip.o:	unzip.c unzip.h crypt.h version.hzipinfo.o:	zipinfo.c unzip.hcrypt_.o:	crypt.c unzip.h zip.h crypt.h		# used by funzip	$(CC) $(CFLAGS) $(FC) -c $< -o $@extract_.o:	extract.c unzip.h crypt.h		# used by unzipsfx	$(CC) $(CFLAGS) $(XC) -c $< -o $@human68k.o:	human68k/human68k.c unzip.h	$(CC) $(CFLAGS) -I. -c human68k/human68k.c -o $@human68_.o:	human68k/human68k.c unzip.h		# used by unzipsfx	$(CC) $(CFLAGS) $(XC) -I. -c human68k/human68k.c -o $@inflate_.o:	inflate.c inflate.h unzip.h crypt.h	# used by funzip	$(CC) $(CFLAGS) $(FC) -c $< -o $@unzipsfx.o:	unzip.c unzip.h crypt.h version.h	# used by unzipsfx	$(CC) $(CFLAGS) $(XC) -c $< -o $@diff:	-(cd ..; diff -cNr unz51f unz51f-x68k -x GNUmakefile -x "*.[ox]" > unzip68k.dif)

⌨️ 快捷键说明

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