# This file coordinates the translation of lab15's driver2.
# To translate driver1, use the 'simple' compile command:
#	g++ driver1.cc -o driver1
# To translate driver2, use the compile command:
#	make
#

driver2: driver2.o RealArray.o
	g++ driver2.o RealArray.o -o driver2

driver2.o: driver2.cc RealArray.h
	g++ -c driver2.cc

RealArray.o: RealArray.cc RealArray.h
	g++ -c RealArray.cc

clean:
	rm -f driver1 driver2 *.o *~ *#

