mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-20 10:20:09 +00:00
c36ca76bb8
* Makefile.am: * examples/*: added the rest of the tutorial examples
9 lines
134 B
Makefile
9 lines
134 B
Makefile
|
|
CC = gcc
|
|
|
|
notebook: notebook.c
|
|
$(CC) `gtk-config --cflags` `gtk-config --libs` notebook.c -o notebook
|
|
|
|
clean:
|
|
rm -f *.o notebook
|