mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 13:41:07 +00:00
9 lines
120 B
Makefile
9 lines
120 B
Makefile
|
|
||
|
CC = gcc
|
||
|
|
||
|
arrow: arrow.c
|
||
|
$(CC) `gtk-config --cflags` arrow.c -o arrow `gtk-config --libs`
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o arrow
|