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

CC = gcc

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

clean: 
	rm -f *.o label