makefile

来自「早期freebsd实现」· 代码 · 共 34 行

TXT
34
字号
# debugging isn't needed now (hah :-)CFLAGS= -O#CFLAGS= -g# gcc seems better than ccCC=gccBISON=bison# bison: -v product .output fileBFLAGS=-vLFLAGS=-vLDLIBS=.SUFFIXES:	.lex.y.c:	${BISON} ${BFLAGS} $< -o $*.c.y.o:	${BISON} ${BFLAGS} $< -o $*.c	${COMPILE.c} $*.c.lex.c:	${LEX.l} $< > $*.c.lex.o:	${LEX.l} $< > $*.c	${COMPILE.c} $*.cnamed-lint:	named-lint.c	${LINK.c} -o named-lint named-lint.c ${LDLIBS}clean:	rm -f named-lint named-lint.o named-lint.c named-lint.output *.BAK

⌨️ 快捷键说明

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