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

📄 makefile.gcc

📁 一些常用的数据结构库
💻 GCC
字号:
# $Id: Makefile.gcc,v 1.17 1999/11/22 03:19:24 kaz Exp $# $Name: kazlib_1_20 $CC	= gcc#CFLAGS	= -Wid-clash-15 -Wall -Wmissing-prototypes -ansi -pedantic -gCFLAGS	= -Wall -Wmissing-prototypes -ansi -pedantic -O2 -DNDEBUGproject: dep tdict tlist thash teh tsfxtlist: list.c list.h	$(CC) $(CFLAGS) -DKAZLIB_TEST_MAIN -o tlist list.ctdict: dict.c dict.h	$(CC) $(CFLAGS) -DKAZLIB_TEST_MAIN -o tdict dict.cthash: hash.c hash.h	$(CC) $(CFLAGS) -DKAZLIB_TEST_MAIN -o thash hash.cteh: except.c except.h	$(CC) $(CFLAGS) -DKAZLIB_TEST_MAIN -o teh except.ctsfx: sfx.c sfx.h except.o hash.o	$(CC) $(CFLAGS) -DKAZLIB_TEST_MAIN -o tsfx sfx.c except.o hash.odocs: docs.dvidocs.dvi: docs.ltx docs.toc docs.ind	latex docs.ltxdocs.ind: docs.idx docs.ist	makeindex -s docs.ist docs.idxdocs.toc: docs.ltx	latex docs.ltxdocs.idx: docs.ltx	latex docs.ltxclean:	-rm tags tlist tdict thash teh tsfx except.o docs.aux docs.log docs.dvi docs.toc docs.idx docs.ind docs.ilgdep: .depend.depend: *.h	gcc -MM *.c > .depend-include .depend

⌨️ 快捷键说明

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