
CC = gcc

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

clean: 
	rm -f *.o text
