src/utils/convolve/makefile 1.6

1.6 2009/03/10 00:34:47 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/utils/convolve/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/convolve/makefile,v
retrieving revision 1.5
retrieving revision 1.6
diff -b -B -U 1000000 -r1.5 -r1.6
--- src/utils/convolve/makefile	19 Dec 2006 23:35:33 -0000	1.5
+++ src/utils/convolve/makefile	10 Mar 2009 00:34:47 -0000	1.6
@@ -1,21 +1,21 @@
 include ../../inc/common.mk
 
-L = -lm 
+L += -lm 
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkweb.a
 
 all::	convolve
 
 O = convolve.o
 
 A = convolve
 
 $A: $O ${MYLIBS}
 	${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/${A} $O ${MYLIBS} $L
 	${STRIP} ${BINDIR}/${A}${EXE}
 
 test:
 	cd tests && ./runtest
 
 clean:
 	rm -f $O