forked from AuroraMiddleware/gtk
9 lines
140 B
Makefile
9 lines
140 B
Makefile
|
|
||
|
CC = gcc
|
||
|
|
||
|
buttonbox: buttonbox.c
|
||
|
$(CC) `gtk-config --cflags` buttonbox.c -o buttonbox `gtk-config --libs`
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o buttonbox
|