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