📄 makefile
字号:
# Rule for building executable from object files# $@ is shorthand for the target of the ruledatastructs: main.o c++ -o $@ $<call_math: call_math.o c++ -o $@ $< -ldl# Rule for compiling individual sources files into object files# $< is shorthand for the first prerequisite%.o: %.cpp c++ -c $<# Rule to clean up all output filesclean: rm -f datastructs call_math main.o call_math.o
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -