.KEEP_STATE:

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

all : testContainers
testContainers.o : testContainers.cpp
	${CCC} -c testContainers.cpp -o testContainers.o ${CCFLAGS}
testContainers: testContainers.o 
	${CCC} -o testContainers testContainers.o ${LIBS} ${CCFLAGS}
clean:
	rm -f *.o core *~

