📄 makefile
字号:
# Makefile for the selective C preprocessor, scpp.## Copyright (c) 1985 by# Tektronix, Incorporated Beaverton, Oregon 97077# All rights reserved.## Permission is hereby granted for personal, non-commercial# reproduction and use of this program, provided that this# notice and all copyright notices are included in any copy.DEFS=CFLAGS= -g $(DEFS)HDRS= scpp.hSOURCES= ctrl.c io.c lex.l parse.y scpp.cOBJECTS= ctrl.o io.o lex.o parse.o scpp.oall: scpp scpp.catscpp: $(OBJECTS) $(CC) $(CFLAGS) -o scpp $(OBJECTS) -lflscpp.cat: scpp.1 nroff -man scpp.1 >scpp.catscpp.o: scpp.c y.tab.h scpp.hctrl.o: ctrl.c y.tab.h scpp.hio.o: io.c scpp.hlex.o: lex.c y.tab.h scpp.hparse.o: parse.c scpp.hlex.c: lex.l lex -l -S./flex.skl lex.l sed -e '/yylex/s//xxlex/g' <lex.yy.c >lex.c rm lex.yy.cy.tab.h parse.c: parse.y yacc -d parse.y mv y.tab.c parse.cclean: -rm -f lex.yy.c lex.c y.tab.c y.tab.h y.output parse.c -rm -f $(OBJECTS)tags: $(SOURCES) ctags $(SOURCES)mail: shar -a scpp.1 Makefile lex.l ctrl.c interp io.c >scpp.shar1 shar -a parse.y scpp.c scpp.h >scpp.shar2
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -