
CC = g++

CFLAGS = -Wall -O2

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

clean: 
	rm -f *.o fontselection
