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