Makefile.binheap

text/plain

Filename: Makefile.binheap
Type: text/plain
Part: 2
Message: [PATCH] binary heap implementation
CFLAGS+=-Wall -g -I../../include -I../../include/lib -DTESTBINHEAP

testbinheap: binaryheap.o testbinheap.o
	$(CC) binaryheap.o testbinheap.o -lm -o testbinheap

binaryheap.o: ../../include/lib/binaryheap.h binaryheap.c

testbinheap.o: ../../include/lib/binaryheap.h testbinheap.c

clean:
	rm -f testbinheap testbinheap.o binaryheap.o