src/parasol/para/makefile 1.15

1.15 2009/03/10 00:34:44 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/parasol/para/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/parasol/para/makefile,v
retrieving revision 1.14
retrieving revision 1.15
diff -b -B -U 1000000 -r1.14 -r1.15
--- src/parasol/para/makefile	21 Feb 2008 02:13:25 -0000	1.14
+++ src/parasol/para/makefile	10 Mar 2009 00:34:44 -0000	1.15
@@ -1,15 +1,15 @@
 include ../../inc/common.mk
 
-L = -lm
+L += -lm
 MYLIBDIR = ../../lib/$(MACHTYPE)
 MYLIBS =  $(MYLIBDIR)/jkweb.a
 
 O = para.o jobDb.o jobResult.o
 
 ../bin/para: $O $(MYLIBS)
 	@${MKDIR} ../bin
 	${CC} ${COPT} ${CFLAGS} -o ../bin/para $O ../lib/$(MACHTYPE)/paralib.a ../../lib/$(MACHTYPE)/jkweb.a
 	${STRIP} ../bin/para${EXE}
 
 clean::
 	rm -f ../bin/para $O