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

CC = gcc

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

clean: 
	rm -f *.o radiobuttons