
CC = gcc

LDFLAGS='-Wl,-brtl'

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

clean: 
	rm -f *.o helloworld
