summaryrefslogtreecommitdiff
path: root/examples/spinbutton/Makefile
blob: 255189a0dcc2176355ea2eeb3eb57fa0781528f0 (plain)
1
2
3
4
5
6
7
8

CC = gcc

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

clean: 
	rm -f *.o spinbutton