74da4ae7b093f5cd0126b8249d04d30aa968a877
hiram
  Tue Jan 4 11:29:28 2011 -0800
these apps need networking libs
diff --git src/utils/bigWigToBedGraph/makefile src/utils/bigWigToBedGraph/makefile
index 68a6b34..d600d75 100644
--- src/utils/bigWigToBedGraph/makefile
+++ src/utils/bigWigToBedGraph/makefile
@@ -1,16 +1,16 @@
 include ../../inc/common.mk
 
-L += -lm -lz
+L += ${SOCKETLIB} -lm -lz
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS = ${MYLIBDIR}/jkweb.a
 
 A = bigWigToBedGraph
 O = bigWigToBedGraph.o
 
 bigWigToBedGraph: ${O} ${MYLIBS}
 	@${MKDIR} "${DESTDIR}${BINDIR}"
 	${CC} ${COPT} ${CFLAGS} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} ${L}
 	${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
 
 clean::
 	rm -f ${O}