📄 makefile
字号:
# important: compile with optimizations off
all: bubble speed
speed: speed.c
gcc -ansi -W -Wall -Wno-unused -lm -o speed speed.c
bubble.o: bubble.c
gcc -pg -c -ansi -W -Wall -Wno-unused bubble.c
bubble: bubble.o
gcc -pg bubble.o -o bubble
clean:
-rm -f speed bubble *.o gmon.out
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -