📄 makefile.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 + -