# Makefile for test-driven development of heap class
# P.Conrad for CISC220, 06J

CCC = CC

all: ${BINARIES} tests


tests: testHeap
	./testHeap

testHeap: runTests.o heap.o testHeap.o
	${CCC} runTests.o heap.o testHeap.o -o $@


runTests.o: runTests.cc runTests.h

heap.o: heap.cc heap.h


clean:
	/bin/rm -f ${BINARIES} *.o core a.out

