CC=g++
CFLAGS=-Wall
CXXFLAGS=-O2
#CXXFLAGS=-g3 -ggdb -O0
LDFLAGS=

all: test_error_v5

test_error_v5: test_error_v5.o ErrorMessage.o TypedErrorMessage.h Exception.o TypedException.h

test_error_v5.o: test_error_v5.cpp
Exception.o:  Exception.h Exception.cpp
ErrorMessage.o:  ErrorMessage.h ErrorMessage.cpp

clean:
	rm -f core a.out *~ *.o test_error_v5