.KEEP_STATE:

CCFLAGS = -O4 -g
CCC = /usr/bin/g++
LIBS = -lm -L/usr/lib

all : testTime solution
solution: solution.o
	${CCC} -o solution solution.o ${LIBS} ${CCFLAGS}
testTime: testTime.o 
	${CCC} -o testTime testTime.o ${LIBS} ${CCFLAGS}
clean:
	rm -f *.o core *~

