8dedff1fa1cebac92b4a66ae13a3f94a2ed3e709
hiram
  Fri Feb 11 14:41:51 2011 -0800
adding printVmPeak() debug call to each of the big* commands
diff --git src/utils/bedToBigBed/makefile src/utils/bedToBigBed/makefile
index 4c04f98..36f9d77 100644
--- src/utils/bedToBigBed/makefile
+++ src/utils/bedToBigBed/makefile
@@ -1,28 +1,28 @@
 include ../../inc/common.mk
 
 L += -lm -lz ${SOCKETLIB}
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS = ${MYLIBDIR}/jkweb.a
 
 A = bedToBigBed
 O = bedToBigBed.o
 
 bedToBigBed: $O ${MYLIBS}
 	@${MKDIR} "${DESTDIR}${BINDIR}"
 	${CC} ${COPT} ${CFLAGS} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} ${L}
 	${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
 
-compile:: ${A}.c
+compile:: ${O} ${MYLIBS}
 	${CC} ${COPT} ${CFLAGS} -o ${A}${EXE} $O ${MYLIBS} ${L}
 
 clean::
 	rm -f ${O} ${A}
 	rm -fr tests/output
 
 test:
 	@rm -fr tests/output
 	@${MKDIR} tests/output
 	${A} -as=itemRgb.as itemRgb.bed chrom.sizes tests/output/itemRgb.bb 2> /dev/null
 	bigBedToBed tests/output/itemRgb.bb test_itemRgb.bed
 	diff itemRgb.bed test_itemRgb.bed
 	rm -fr tests/output test_itemRgb.bed