# Name: Makefile # Author: Leo Liberti # Purpose: makefile for complex class project # Source: GNU make # History: 060109 work started # 120124 presented to x09 students CXXFLAGS = -g all: test test: complex.o test.cxx c++ $(CXXFLAGS) -o test test.cxx complex.o complex.o: complex.cxx complex.h c++ $(CXXFLAGS) -c -o complex.o complex.cxx clean: rm -f *~ complex.o test