mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-19 01:40:10 +00:00
9 lines
134 B
Makefile
9 lines
134 B
Makefile
|
|
||
|
CC = gcc
|
||
|
|
||
|
eventbox: eventbox.c
|
||
|
$(CC) `gtk-config --cflags` `gtk-config --libs` eventbox.c -o eventbox
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o eventbox
|