📄 makefile
字号:
# Makefile for Unix Interpress utilities## Copyright (c) 1984, 1985, 1986 Xerox Corp.## HISTORY# 03-Jul-86 Lee Moore (lee) at Xerox Webster Research Center# Added "-lm" to the load as a favor to pyramids.## Dec 1 1985 Lee Moore Xerox Webster Research Center# added lint commandDESTBIN=../../../binDESTINCLUDE=../../../includeDESTLIB=../../../libtexttoip: texttoip.o textlex.o $(DESTLIB)/libip.a $(CC) $(CFLAGS) -o texttoip texttoip.o textlex.o \ $(DESTLIB)/libip.a -ll -lm# Rules for object files -- include file dependencies must be noted heretextlex.o: $(DESTINCLUDE)/iptokens.h texttoken.h $(DESTINCLUDE)/ipnames.h $(CC) $(CFLAGS) -I$(DESTINCLUDE) -c textlex.ctextlex.c: textlex.ltexttoip.o: $(DESTINCLUDE)/iptokens.h texttoken.h $(DESTINCLUDE)/literal.h $(CC) $(CFLAGS) -I$(DESTINCLUDE) -c texttoip.c# Lintlint: textlex.c lint -I$(DESTINCLUDE) texttoip.c textlex.c $(DESTLIB)/llib-lip.ln -lc# Installationinstall: $(DESTBIN)/texttoip$(DESTBIN)/texttoip: texttoip install -c -s texttoip $(DESTBIN)/texttoip# Convenience rules: cleaningclean: rm -f texttoip textlex.c *.o
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -