src/hg/txGraph/makefile 1.7

1.7 2009/03/10 00:34:36 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/hg/txGraph/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/txGraph/makefile,v
retrieving revision 1.6
retrieving revision 1.7
diff -b -B -U 1000000 -r1.6 -r1.7
--- src/hg/txGraph/makefile	31 Aug 2007 19:23:27 -0000	1.6
+++ src/hg/txGraph/makefile	10 Mar 2009 00:34:36 -0000	1.7
@@ -1,38 +1,38 @@
 include ../../inc/common.mk
 
-L = -lm
+L += -lm
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkweb.a
 
 all:
 	@for D in ${DIRS} x; do \
 	  if test "$$D" != "x" ; then \
 	    ( cd $$D && echo $$D && ${MAKE}  ) ;\
 	    x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \
 	    fi ;\
 	done
 
 DIRS = \
     agxToTxg \
     bedToTxEdges \
     txAbFragFind \
     txBedToGraph \
     txOrtho \
     txPslFilter \
     txPslToBed \
     txReadRa \
     txWalk \
     txgAddEvidence \
     txgAnalyze \
     txgGoodEdges \
     txgToAgx \
     txgToXml \
     txgTrim
 
 clean:
 	@for D in ${DIRS} x; do \
 	  if test "$$D" != "x" ; then \
 	    ( cd $$D && echo $$D && ${MAKE} clean ) ;\
 	    x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \
 	    fi ;\
 	done