
CC = gcc

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

clean: 
	rm -f helloworld
