# Makefile for Lab03 (Ten Short C++ Labs)
# wget http://oceanai.mit.edu/cpplabs/lab03/MakeFile

all: function_hello function_hellocap function_hellocmd function_sepdef

function_hello: function_hello.cpp
	g++ -o function_hello function_hello.cpp

function_hellocap: function_hellocap.cpp
	g++ -o function_hellocap function_hellocap.cpp

function_hellocmd: function_hellocmd.cpp
	g++ -o function_hellocmd function_hellocmd.cpp

function_sepdef: function_sepdef.h function_sepdef.cpp function_main.cpp
	g++ -o function_sepdef function_sepdef.cpp function_main.cpp

clean:
	rm -f function_hello function_hellocap function_hellocmd
	rm -f function_sepdef *~