📄 makefile
字号:
## Makefile for a stemmer program.# Written and tested by Christopher Fox 4/15/91## Directives:# stemmer A program to generate a stemmed list of terms from# a file. The program is executed by typing# stemmer <filename># where <filename> is an ASCII file to be stemmed.## all (default) Make the program above.## regression Execute a regression test. The stemmer program# should write a list of stemmed words to stdout.## lint Run the stemmer code through lint#CC=gccCFLAGS=-OLDFLAGS=LIBS=all: stemmerstemmer: stemmer.o stem.o $(CC) -o $@ stemmer.o stem.ostemmer.o: stemmer.c stem.h $(CC) $(CFLAGS) -c stemmer.cstem.o: stem.c stem.h $(CC) $(CFLAGS) -c stem.clint: lint stemmer.c stem.cregression: stemmer testfile ./stemmer testfile
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -