# Computer Science 367, Section 3, Fall 1997
# Programming Assignment Three
# Instructor: Michael Siff (siff@cs.wisc.edu)
#
# set up compiler and options
CC = g++ -ansi -pedantic -Wall -g
MAIN = bst-master
#
# you must add avl.h and avl.C (once those files exist) to the end of this
# dependency list for proper Makefile operation.
DEPENDENCIES = $(MAIN).C red-black.C red-black.h bst.C bst.h \
 binary-tree.C binary-tree.h bst-test.C bst-display.C 

$(MAIN) : $(MAIN).o 
	$(CC) -o $(MAIN) $(MAIN).o
$(MAIN).o : $(DEPENDENCIES)
	$(CC) -c $(MAIN).C
