# file: makefile

heap: Heap.o testheap.o 
	CC -o heap -g testheap.o Heap.o 

testheap.o:  testheap.cpp Heap.cpp
	CC -c testheap.cpp

Heap.o: Heap.h Heap.cpp
	CC -c Heap.cpp
   
clean:
	rm -f *.o; rm -f heap
