CXX = g++
CC = g++

all:		frame

test:		all
	./frame <../data/name1

clobber:
	rm -f *.o *.exe core frame
