# Name:     Micheal H. McCabe
# Date:     April 20, 2009
# Program:  Calculator V10 / Modular Version
# Filename: makefile

#Dependencies for the calcV10 executable file:

calcV10: calc_main.o calc_functions.o

#Linker command for the calcV10 executable file:

	g++ calc_main.o calc_functions.o -o calcV10

#Dependencies for the calc_functions object file:

calc_functions.o: calc.h calc_functions.cpp

#Compiler command for the calc_functions object file:

	g++ -Wall -c calc_functions.cpp

#Dependencies for the calc_main object file:

calc_main.o: calc.h calc_main.cpp

#Compiler command for the calc_main object file:

	g++ -Wall -c calc_main.cpp

#That concludes the makefile for Calculator V10



