?? makefile
字號(hào):
## Makefile for a stop list filter program.# Written by and tested by Christopher Fox 4/10/91## Directives:# stopper A program to generate a stop list and filter a file.# This program assumes that a file called "stop.wrd"# exists and contains stop words, one per line.# The program is executed by typing# stopper <filename># where <filename> is an ASCII file to be filtered.## all (default) Make the program above.## regression Execute a regression test. The stopper program# should write a list of filtered words to stdout.## lint Run the stopper code through lint#CC=gccCFLAGS=-OLDFLAGS=LIBS=all: stopperstopper: stopper.o stop.o strlist.o $(CC) -o stopper stopper.o stop.o strlist.ostopper.o: stopper.c stop.h strlist.h $(CC) $(CFLAGS) -c -g stopper.cstop.o: stop.c stop.h strlist.h $(CC) $(CFLAGS) -c -g stop.cstrlist.o: strlist.c strlist.h $(CC) $(CFLAGS) -c -g strlist.clint: lint stopper.c stop.c strlist.cregression: stopper testfile stop.wrd ./stopper testfile
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -