summaryrefslogtreecommitdiff
path: root/examples/radiobuttons/Makefile
blob: 96d0a19ca2c3d0a3cf65378ef58b18f80670797f (plain)
1
2
3
4
5
6
7
8

CC = gcc

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

clean: 
	rm -f *.o radiobuttons