makefile

来自「基于网络编程的例子」· 代码 · 共 18 行

TXT
18
字号
CC = gccall: simple XMLviewer notebooksimple: simple.c	$(CC) `gtk-config --cflags`  simple.c -o simple `gtk-config --libs`XMLviewer: XMLviewer.c	cd expat ; make	$(CC) `gtk-config --cflags`  -I expat/xmlparse XMLviewer.c -o XMLviewer `gtk-config --libs`  expat/xmlparse/*.o expat/xmltok/*.onotebook: notebook.c draw_widget.c	$(CC) -I /usr/local/lib/glib/include `gtk-config --cflags` notebook.c draw_widget.c -o notebook `gtk-config --libs`clean:	rm -f *.o simple XMLviewer notebook

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?