src/hg/utils/bedExtendRanges/makefile 1.3

1.3 2009/03/10 00:34:38 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/hg/utils/bedExtendRanges/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/utils/bedExtendRanges/makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -B -U 1000000 -r1.2 -r1.3
--- src/hg/utils/bedExtendRanges/makefile	7 Oct 2008 00:04:16 -0000	1.2
+++ src/hg/utils/bedExtendRanges/makefile	10 Mar 2009 00:34:38 -0000	1.3
@@ -1,25 +1,25 @@
 include ../../../inc/common.mk
 
-L = -lm ${MYSQLLIBS}
+L += -lm ${MYSQLLIBS}
 MYLIBDIR = ../../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
 
 A = bedExtendRanges
 O = ${A}.o
 
 GOODFILES = bed7.txt bed8.txt chromBoundaries.txt
 
 compile: $(O) $(MYLIBS)
 	${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/${A} $O $(MYLIBS) $L
 
 clean:
 	rm -f $(O)
 
 test: good
 	
 
 good:
 	@for good in $(GOODFILES); do \
 		echo "Processing test file: $$good"; \
 		${A} hg18 259 stdin < tests/$$good; \
 	done