
heap.exe: heap.c
	pacc -Bs -2 -Zg3 -o$@ $<

heap.out: heap.c
	gcc -Wall -O -g -o $@ $< 

clean:
	rm -f heap.out

