CPPFLAGS = -g2

Tree :  main.o

	g++ $(CPPFLAGS) -o Tree main.o

%.o : %.cpp
	g++ $(CPPFLAGS) -c $<

clean :
	-rm *.o

dist-clean : clean
	-rm Tree
