hypertree.out : hypertree.o string.o
	g++ -Wall -o hypertree.out hypertree.o string.o

string.o : string.cpp String.h
	g++ -c string.cpp

hypertree.o : hypertree.cpp hyper.h
	g++ -Wall -c  hypertree.cpp

