makefile
来自「《Linux程序设计权威指南》源代码」· 代码 · 共 17 行
TXT
17 行
CC = gccall: helloworld1 helloworld2 helloworld3helloworld1: helloworld1.c $(CC) `gtk-config --cflags` helloworld1.c -o helloworld1 `gtk-config --libs`helloworld2: helloworld2.c $(CC) `gtk-config --cflags` helloworld2.c -o helloworld2 `gtk-config --libs`helloworld3: helloworld3.c $(CC) `gtk-config --cflags` helloworld3.c -o helloworld3 `gtk-config --libs`clean: rm -f *.o *.bak helloworld1 helloworld2 helloworld3
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?