summaryrefslogtreecommitdiff
path: root/examples/buttonbox/Makefile
blob: 4457ff3fc6150f12fd4f994295cd28a5a58b35d1 (plain)
1
2
3
4
5
6
7
8

CC = gcc

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

clean: 
	rm -f *.o buttonbox