
CC = g++

CFLAGS = -Wall -O2

all: comboboxentry comboboxtext

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

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

clean: 
	rm -f *.o comboboxentry comboboxtext
