
CC = gcc

LDFLAGS='-Wl,-brtl'

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

clean: 
	rm -f *.o helloworld2
