
CC = g++

CFLAGS = -Wall -O2

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

clean: 
	rm -f *.o textview
