

# add special targets to enable testing with pop_heap

clean:: FORCE
	$(RM) libheap.a


include ../Makefile.group

OBJ :=  push_heap/push_heap.o\
 	pop_heap/pop_heap.o\
 	make_heap/make_heap.o\
	sort_heap/sort_heap.o\
	is_heap/is_heap.o

lib: libheap.a

libheap.a: obj FORCE
	@ar cr  $@ $(OBJ)
	@ranlib  $@

