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