
CC = gcc

LDFLAGS='-Wl,-brtl'

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

clean: 
	rm -f *.o tree
