
CC = gcc

LDFLAGS='-Wl,-brtl'

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

clean: 
	rm -f *.o list
