Step 2: Building your Program

To compile your assignment, try creating a Makefile that has the following commands:
CPPFLAGS = -ansi -Wall

Lab6.out: Lab6.o Fraction.o
	g++ Lab6.o Fraction.o -o Lab6.out
Your TA will explain why this works.