summaryrefslogtreecommitdiff
path: root/examples/buttons/Makefile
blob: 6485609e1b862a45bdf89bafa99e03b187065bf8 (plain)
1
2
3
4
5
6
7
8

CC = gcc

buttons: buttons.c 
	$(CC) `gtk-config --cflags` `gtk-config --libs` buttons.c -o buttons

clean: 
	rm -f *.o buttons