src/utils/bigWigToBedGraph/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/bigWigToBedGraph/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/bigWigToBedGraph/makefile,v
retrieving revision 1.7
retrieving revision 1.8
diff -b -B -U 1000000 -r1.7 -r1.8
--- src/utils/bigWigToBedGraph/makefile 22 Sep 2009 20:01:28 -0000 1.7
+++ src/utils/bigWigToBedGraph/makefile 12 Nov 2009 23:15:52 -0000 1.8
@@ -1,16 +1,16 @@
include ../../inc/common.mk
-L += -lm
+L += -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}