mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 14:10:30 +00:00
9 lines
115 B
Makefile
9 lines
115 B
Makefile
|
|
||
|
CC = gcc
|
||
|
|
||
|
base: base.c
|
||
|
$(CC) `gtk-config --cflags` base.c -o base `gtk-config --libs`
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o base
|