src/hg/makeDb/hgBedsToBedExps/makefile 1.3

1.3 2009/03/10 00:34:02 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/hg/makeDb/hgBedsToBedExps/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/makeDb/hgBedsToBedExps/makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -B -U 1000000 -r1.2 -r1.3
--- src/hg/makeDb/hgBedsToBedExps/makefile	26 Nov 2007 15:51:06 -0000	1.2
+++ src/hg/makeDb/hgBedsToBedExps/makefile	10 Mar 2009 00:34:02 -0000	1.3
@@ -1,19 +1,19 @@
 include ../../../inc/common.mk
 
-L = -lm
+L += -lm
 MYLIBDIR = ../../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkweb.a
 
 O = hgBedsToBedExps.o bToBeCfg.o
 
 hgBedsToBedExps: $O ${MYLIBS}
 	${CC} ${COPT} -o ${BINDIR}/hgBedsToBedExps $O ${MYLIBS} $L
 	${STRIP} ${BINDIR}/hgBedsToBedExps${EXE}
 
 clean:
 	rm -f $O
 
 test:
 	cd tests/first; hgBedsToBedExps -verbose=0 in.cfg out.bed out.exps
 	cd tests/first; diff expected.exps out.exps
 	cd tests/first; diff expected.bed out.bed