8dedff1fa1cebac92b4a66ae13a3f94a2ed3e709
hiram
  Fri Feb 11 14:41:51 2011 -0800
adding printVmPeak() debug call to each of the big* commands
diff --git src/utils/bigBedSummary/makefile src/utils/bigBedSummary/makefile
index 4cc7419..f66786b 100644
--- src/utils/bigBedSummary/makefile
+++ src/utils/bigBedSummary/makefile
@@ -1,16 +1,19 @@
 include ../../inc/common.mk
 
 L += -lm -lz ${SOCKETLIB}
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS = ${MYLIBDIR}/jkweb.a
 
 A = bigBedSummary
 O = ${A}.o
 
 $A: ${O} ${MYLIBS}
 	@${MKDIR} "${DESTDIR}${BINDIR}"
 	${CC} ${COPT} ${CFLAGS} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} ${L}
 	${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
 
+compile: ${O} ${MYLIBS}
+	${CC} ${COPT} ${CFLAGS} -o ${A}${EXE} $O ${MYLIBS} ${L}
+
 clean::
 	rm -f ${O}