⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 一个基于C++的语法分析类
💻
字号:
# 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -