
CC = g++

CFLAGS = -Wall

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

clean: 
	rm -f *.o combobox
