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

📄 makefile

📁 这是又一个C语言解释器, 我们可以方便地扩展其功能, 并将其用于我们的工作中
💻
字号:
# Makefile for cgihtml.a# $Id: Makefile,v 1.2 1998/05/05 19:42:56 edb Exp $# macros and variablesCC= gccCFLAGS= -g -Wall -DUNIX #-DUPLOADDIR=/tmpLIB = ../cgihtml.aINSTALLDIR= /usr/local/etc/httpd/cgi-binTARGETS = query-results mail.cgi index-sample.cgi ignore.cgi test.cgi# targetsquery-results: $(LIB) query-results.o	$(CC) -o $@ query-results.o $(LIB)mail.cgi: $(LIB) mail.cgi.o	$(CC) -o $@ mail.cgi.o $(LIB)index-sample.cgi: $(LIB) index-sample.cgi.o	$(CC) -o $@ index-sample.cgi.o $(LIB)ignore.cgi: $(LIB) ignore.cgi.o	$(CC) -o $@ ignore.cgi.o $(LIB)test.cgi: $(LIB) test.cgi.o	$(CC) -o $@ test.cgi.o $(LIB)$(LIB):	cd ..; make cgihtml.aall: $(TARGETS)install: $(TARGETS)	chmod a+x $(TARGETS)	mv -f $(TARGETS) $(INSTALLDIR)clean:	rm -f *.o $(TARGETS)

⌨️ 快捷键说明

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