src/utils/bigBedToBed/makefile 1.5

1.5 2009/07/07 17:57:42 hiram
adding bigWigInfo to the build, and need SOCKETLIB for building on Solaris
Index: src/utils/bigBedToBed/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/bigBedToBed/makefile,v
retrieving revision 1.4
retrieving revision 1.5
diff -b -B -U 1000000 -r1.4 -r1.5
--- src/utils/bigBedToBed/makefile	27 Mar 2009 06:25:30 -0000	1.4
+++ src/utils/bigBedToBed/makefile	7 Jul 2009 17:57:42 -0000	1.5
@@ -1,16 +1,16 @@
 include ../../inc/common.mk
 
-L += -lm
+L += -lm ${SOCKETLIB}
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkweb.a
 
 A = bigBedToBed
 O = bigBedToBed.o
 
 bigBedToBed: ${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}