makefile.os2

来自「GNU 系统开发的基于Iz77语法的压缩 学习lz77压缩算法 」· OS2 代码 · 共 52 行

OS2
52
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?