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

📄 makefile.os2

📁 GNU 系统开发的基于Iz77语法的压缩 学习lz77压缩算法 
💻 OS2
字号:
# Makefile for gzip (GNU zip)    -*- Indented-Text -*-# Copyright (C) 1992-1993 Jean-loup Gailly# specialized version for OS/2# compilation with emx 0.8f (gcc 2.3.3) or newer# release version, statically linked C runtimestatic:	$(MAKE) -f Makefile.os2 all \	CC="gcc -Zomf -Zsys -O" O=".obj" LDFLAGS="-s"# release version, dynamically linked C runtimedynamic:	$(MAKE) -f Makefile.os2 all \	CC="gcc -Zomf -Zmt -O" O=".obj" LDFLAGS="-s"# debugging versiondebug:	$(MAKE) -f Makefile.os2 all \	CC="gcc -g" O=".o"CFLAGS  = -DOS2 -DASMVLIBS    = gzip.defOBJA    = match$OOBJS = gzip$O zip$O deflate$O trees$O bits$O unzip$O inflate$O util$O \       crypt$O lzw$O unlzw$O unpack$O getopt$O $(OBJA).c$O:	$(CC) $(CFLAGS) -c $<all: gzip.exe gzip.info gzip.docgzip.exe: $(OBJS)	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)gzip$O zip$O deflate$O trees$O bits$O unzip$O inflate$O: gzip.h tailor.hutil$O lzw$O unlzw$O unpack$O crypt$O: gzip.h tailor.hgzip$O unlzw$O: revision.h lzw.hbits$O unzip$O util$O zip$O: crypt.hmatch$O: match.S	$(CC) -xassembler-with-cpp -c -o $@ match.Sgzip.info: gzip.texi gpl.texinfo	makeinfo gzip.texigzip.doc: gzip.1	groff -man gzip.1 > $@

⌨️ 快捷键说明

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