📄 makefile
字号:
# All object files that must be linked into final executablesEXPR_OBJ= scan_expr.o parse_expr.o eval_expr.o # Rule for building executable from object files# $@ is shorthand for the target of the ruleeval_expr: ${EXPR_OBJ} c++ -g -o $@ ${EXPR_OBJ}# Rule for compiling individual sources files into object files# $< is shorthand for the first prerequisite${EXPR_OBJ}: %.o: %.cpp c++ -g -c $<# Rule to clean up all output filesclean: rm -f eval_expr ${EXPR_OBJ}# DO NOT DELETEeval_expr.o: eval_expr.hparse_expr.o: eval_expr.hscan_expr.o: eval_expr.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -