
CC = g++

CFLAGS = -Wall -O2

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

clean: 
	rm -f *.o buttonbox
