

# Makefile for binary tree example.


binaryTree : main.o 
	eg++ -g -o binaryTree main.o

main.o : main.C binaryTree.h binaryTreeNode.h
	eg++ -g -c main.C

