
CC = gcc

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

clean: 
	rm -f *.o text
