8dedff1fa1cebac92b4a66ae13a3f94a2ed3e709
hiram
  Fri Feb 11 14:41:51 2011 -0800
adding printVmPeak() debug call to each of the big* commands
diff --git src/utils/bigWigSummary/makefile src/utils/bigWigSummary/makefile
index 00dc84a..437be4b 100644
--- src/utils/bigWigSummary/makefile
+++ src/utils/bigWigSummary/makefile
@@ -1,16 +1,19 @@
 include ../../inc/common.mk
 
 L += ${SOCKETLIB} -lm -lz
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS = ${MYLIBDIR}/jkweb.a
 
 A = bigWigSummary
 O = bigWigSummary.o
 
 bigWigSummary: ${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}