gtk2/examples/buttons/Makefile

9 lines
129 B
Makefile
Raw Normal View History

CC = gcc
buttons: buttons.c
$(CC) `gtk-config --cflags` `gtk-config --libs` buttons.c -o buttons
clean:
rm -f *.o buttons