# makefile for the sayTest program sayTest: sayTest.o Talker.o Talker.h g++ sayTest.o Talker.o -o sayTest sayTest.o: sayTest.cpp Talker.h g++ -c sayTest.cpp Talker.o: Talker.cpp Talker.h g++ -c Talker.cpp clean: rm -f *.o