src/hg/txGraph/txPslToBed/makefile 1.9

1.9 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/txPslToBed/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/txGraph/txPslToBed/makefile,v
retrieving revision 1.8
retrieving revision 1.9
diff -b -B -U 1000000 -r1.8 -r1.9
--- src/hg/txGraph/txPslToBed/makefile	30 Mar 2007 19:52:41 -0000	1.8
+++ src/hg/txGraph/txPslToBed/makefile	10 Mar 2009 00:34:36 -0000	1.9
@@ -1,19 +1,19 @@
 include ../../../inc/common.mk
 
-L = ${MYSQLLIBS} -lm
+L += ${MYSQLLIBS} -lm
 MYLIBDIR = ../../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a 
 
 O = txPslToBed.o
 
 txPslToBed: $O ${MYLIBS}
 	${CC} ${COPT} -o ${BINDIR}/txPslToBed $O ${MYLIBS} $L
 	${STRIP} ${BINDIR}/txPslToBed${EXE}
 
 test:
 	txPslToBed -verbose=0 -cds=input.cds input.psl /cluster/data/hg18/hg18.2bit output.bed 
 #	txPslToBed -verbose=0 input.psl /cluster/data/hg18/hg18.2bit output.bed 
 	diff expected.bed output.bed
 
 clean:
 	rm -f $O