src/utils/bigBedToBed/makefile 1.8
1.8 2009/11/12 23:15:52 kent
First cut of compressed bigWig/bigBed stuff. So far read side should be complete including Genome Browser, Table Browser, wigToBigWig and bigWig utility functions. Still to do bedGraphToBigWig and bedToBigBed.
Index: src/utils/bigBedToBed/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/bigBedToBed/makefile,v
retrieving revision 1.7
retrieving revision 1.8
diff -b -B -U 1000000 -r1.7 -r1.8
--- src/utils/bigBedToBed/makefile 22 Sep 2009 21:03:58 -0000 1.7
+++ src/utils/bigBedToBed/makefile 12 Nov 2009 23:15:52 -0000 1.8
@@ -1,16 +1,16 @@
include ../../inc/common.mk
-L += -lm ${SOCKETLIB}
+L += -lm -lz ${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}