CC = g++ $(CFLAGS)
CFlags = -g -O0

treeTst: treeTst.cpp RBTree.h
	$(CC) -o treeTst treeTst.cpp

clean:
	rm -f treeTst
