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

CC = gcc

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

clean: 
	rm -f *.o eventbox