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