83c808e59811509a08edb47029ccb1420064c6fc
angie
  Fri Apr 8 09:36:04 2011 -0700
Added -lz to a couple makefiles that need it when no special USE_ vars are set.
diff --git src/utils/bigWigAverageOverBed/makefile src/utils/bigWigAverageOverBed/makefile
index 4066971..bc42ffd 100644
--- src/utils/bigWigAverageOverBed/makefile
+++ src/utils/bigWigAverageOverBed/makefile
@@ -1,18 +1,18 @@
 include ../../inc/common.mk
 
-L += -lm
+L += -lm -lz
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkweb.a
 
 A = bigWigAverageOverBed
 O = bigWigAverageOverBed.o
 
 bigWigAverageOverBed: ${O} ${MYLIBS}
 	${CC} ${COPT} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} $L
 	${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
 
 compile:: ${O}
 	${CC} ${COPT} -o ${A}${EXE} ${O} ${MYLIBS} $L
 
 clean::
 	rm -f ${A}${EXE} ${O}