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

CC = gcc

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

clean: 
	rm -f *.o rulers