src/utils/weedLines/makefile 1.5

1.5 2009/03/10 00:34:51 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/utils/weedLines/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/weedLines/makefile,v
retrieving revision 1.4
retrieving revision 1.5
diff -b -B -U 1000000 -r1.4 -r1.5
--- src/utils/weedLines/makefile	23 Feb 2007 00:24:26 -0000	1.4
+++ src/utils/weedLines/makefile	10 Mar 2009 00:34:51 -0000	1.5
@@ -1,19 +1,19 @@
 include ../../inc/common.mk
 
-L = -lm
+L += -lm
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
 
 O = weedLines.o
 
 weedLines: $O ${MYLIBS}
 	${CC} ${COPT} -o ${BINDIR}/weedLines $O ${MYLIBS} $L
 	${STRIP} ${BINDIR}/weedLines${EXE}
 
 test:
 	weedLines input.weed input.txt out.good -weeded=out.bad
 	diff expected.good out.good
 	diff expected.bad out.bad
 	
 clean:
 	rm -f $O