mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-14 14:20:21 +00:00
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
|