makefile
来自「一个基于C++的语法分析类」· 代码 · 共 31 行
TXT
31 行
# Makefile for clex/cparseINCLUDE=/usr/local/include/CCCCC=/user/local/CCCCOPTS= -g -O# -g: include debug info -O: optimizeall: kwhash clex_testkwhash: kwhash.c /usr/include/stdio.h /bin/cc ${CCOPTS} -o kwhash kwhash.cclex_test: clex_test.o clex.o ${CCC} -g -o clex_test clex_test.o clex.o.c.o: /usr/lib/cpp -I${INCLUDE} -Dc_plusplus=1 $*.c >$*.cpp /user/mentor/local/cfront +L +f$*.c <$*.cpp >$*..c && /bin/rm $*.cpp /bin/cc -c ${CCOPTS} $*..c && /bin/mv $*..o $*.oclex.o: ${INCLUDE}/stdio.h \ ${INCLUDE}/stream.h \ ${INCLUDE}/string.h \ ${INCLUDE}/stdlib.h \ ${INCLUDE}/ctype.h \ ${INCLUDE}/assert.h \ clex.h clex_sym.hclex_test.o: ${INCLUDE}/stdio.h \ clex.h clex_sym.h
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?