
CC = g++

CFLAGS = -Wall -O2

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

clean: 
	rm -f *.o buttons
