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