##
#  Makefile 
#


HareLynxData.o : HareLynxData.cpp HareLynxData.h
	g++ -g -c HareLynxData.cpp

UsefulUtils.o : UsefulUtils.cpp UsefulUtils.h
	g++ -g -c UsefulUtils.cpp

PredatorPrey.o : PredatorPrey.cpp PredatorPrey.h
	g++ -g -c PredatorPrey.cpp

example_predator_prey : example_predator_prey.cpp PredatorPrey.o 
	g++ -g -o example_predator_prey example_predator_prey.cpp PredatorPrey.o

hare_lynx_fit_step2 : hare_lynx_fit_step2.cpp PredatorPrey.o HareLynxData.o UsefulUtils.o
	g++ -g -o hare_lynx_fit_step2 hare_lynx_fit_step2.cpp PredatorPrey.o HareLynxData.o UsefulUtils.o


hl : hl.cpp PredatorPrey.o HareLynxData.o UsefulUtils.o
	g++ -g -o hl hl.cpp PredatorPrey.o HareLynxData.o UsefulUtils.o


