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

CC = gcc

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

clean: 
	rm -f *.o text