all:
	g++ -o decisionTree.o -Isrc/ src/Main.cpp src/Attribute.cpp src/Instance.cpp src/Parser.cpp
clean:
	rm -f decisionTree.*
