forked from AuroraMiddleware/gtk
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
|