
CC = gcc

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

clean: 
	rm -f *.o helloworld2
