src/utils/bedClip/makefile 1.4
1.4 2009/11/22 00:30:33 kent
Adding required -lz to link line.
Index: src/utils/bedClip/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/bedClip/makefile,v
retrieving revision 1.3
retrieving revision 1.4
diff -b -B -U 1000000 -r1.3 -r1.4
--- src/utils/bedClip/makefile 15 Oct 2009 19:36:00 -0000 1.3
+++ src/utils/bedClip/makefile 22 Nov 2009 00:30:33 -0000 1.4
@@ -1,20 +1,20 @@
include ../../inc/common.mk
-L += -lm
+L += -lm -lz
MYLIBDIR = ../../lib/${MACHTYPE}
MYLIBS = ${MYLIBDIR}/jkweb.a
A = bedClip
O = bedClip.o
B = ${DESTDIR}${BINDIR}/${A}${EXE}
bedClip: ${O} ${MYLIBS}
@${MKDIR} `dirname $B`
${CC} ${COPT} -o ${B} $O ${MYLIBS} $L
${STRIP} ${B}
compile:: ${O}
${CC} ${COPT} -o ${A}${EXE} ${O} ${MYLIBS} $L
clean::
rm -f ${A} ${O}