CC = g++ $(CFLAGS) CFLAGS = -O0 -g MatrixTst: MatrixTst.cpp Matrix.cpp Matrix.h $(CC) -o MatrixTst MatrixTst.cpp Matrix.cpp clean: rm -f MatrixTst MatrixTst.exe *.o