CC=g++ CFLAGS=-Wall CXXFLAGS=-O2 #CXXFLAGS=-g3 -ggdb -O0 all: testCommandLine testCommandLine: testCommandLine.o CommandLine.o TypedException.h Cache.o ErrorMessage.o testCommandLine.o: testCommandLine.cpp Cache.o: Cache.cpp Cache.h ErrorMessage.o: ErrorMessage.cpp ErrorMessage.h clean: rm -f core a.out *~ *.o testCommandLine