##
#  Makefile 
#


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

example_useful_utils : example_useful_utils.cpp UsefulUtils.o
	g++ -g -o example_useful_utils example_useful_utils.cpp UsefulUtils.o


useful_example : useful_example.cpp UsefulUtils.o
	g++ -g -o useful_example useful_example.cpp UsefulUtils.o


