
CC = gcc

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

clean: 
	rm -f helloworld2
