
CC = g++

CFLAGS = -Wall -O2

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

clean: 
	rm -f *.o selection
