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

📄 makefile.gcc

📁 一些关于HTTP协议处理的文档,还包括了gzip包(它是用来解压缩HTTP传送的压缩数据)
💻 GCC
字号:
# Makefile for gzip (GNU zip)    -*- Indented-Text -*-# Copyright (C) 1992-1993 Jean-loup Gailly and the Free Software Foundation# Amiga GCC version, written by Preston Hunt <gt5708a@prism.gatech.edu># This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.# This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.# You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.CC = gccCPP = cppCFLAGS = -m68020 -m68881 -O2#CFLAGS = -m68000 -O2#for the 68000, set below: OBJA=CPPFLAGS = -Dmc68020LDFLAGS = O = .oSRCS = gzip.c zip.c deflate.c trees.c bits.c unzip.c inflate.c util.c crypt.c\       lzw.c unlzw.c unpack.c unlzh.c makecrc.c getopt.c match.SOBJA = 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 unlzh$O getopt$O match$OHDRS = gzip.h lzw.h tailor.h revision.h crypt.h getopt.h.c.o:	$(CC) -c $(DEFS) $(CFLAGS) $<.PHONY: default allall:	gzipgzip: $(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 unlzh$O crypt$O: gzip.h tailor.hgzip$O unlzw$O: revision.h lzw.hbits$O unzip$O util$O zip$O: crypt.hgzip$O getopt$O: getopt.hmatch$O: match.S	$(CPP) $(CPPFLAGS) match.S > _match.s	$(CC) -c _match.s	mv _match$O match$O	rm -f _match.s

⌨️ 快捷键说明

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