
CC = g++

CFLAGS = -Wall

filechooser: filechooser.cc filechooser.hh
	$(CC) filechooser.cc -o filechooser $(CFLAGS) `pkg-config gfcui-2.0 --cflags --libs`

clean: 
	rm -f *.o filechooser
