CXXFLAGS = -g -pipe LINKFLAGS = -g all: TestPoly Poly.o: Poly.cc Poly.h g++ -c $(CXXFLAGS) Poly.cc TestPoly.o: TestPoly.cc Poly.h g++ -c $(CXXFLAGS) TestPoly.cc TestPoly: TestPoly.o Poly.o g++ -o TestPoly $(LINKFLAGS) TestPoly.o Poly.o