src/utils/bigBedSummary/makefile 1.9
1.9 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/bigBedSummary/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/bigBedSummary/makefile,v
retrieving revision 1.8
retrieving revision 1.9
diff -b -B -U 1000000 -r1.8 -r1.9
--- src/utils/bigBedSummary/makefile 9 Nov 2009 22:07:31 -0000 1.8
+++ src/utils/bigBedSummary/makefile 12 Nov 2009 23:15:52 -0000 1.9
@@ -1,16 +1,16 @@
include ../../inc/common.mk
-L += -lm ${SOCKETLIB}
+L += -lm -lz ${SOCKETLIB}
MYLIBDIR = ../../lib/${MACHTYPE}
MYLIBS = ${MYLIBDIR}/jkweb.a
A = bigBedSummary
O = ${A}.o
$A: ${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}