src/hg/mouseStuff/mafCoverage/makefile 1.8

1.8 2009/03/10 00:34:17 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/hg/mouseStuff/mafCoverage/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/mouseStuff/mafCoverage/makefile,v
retrieving revision 1.7
retrieving revision 1.8
diff -b -B -U 1000000 -r1.7 -r1.8
--- src/hg/mouseStuff/mafCoverage/makefile	16 Jan 2009 05:44:14 -0000	1.7
+++ src/hg/mouseStuff/mafCoverage/makefile	10 Mar 2009 00:34:17 -0000	1.8
@@ -1,24 +1,24 @@
 include ../../../inc/common.mk
 
-L = -lm ${MYSQLLIBS}
+L += -lm ${MYSQLLIBS}
 MYLIBDIR = ../../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
 
 O = mafCoverage.o
 
 mafCoverage: $O ${MYLIBS}
 	${CC} ${COPT} -o ${BINDIR}/mafCoverage $O ${MYLIBS} $L
 	${STRIP} ${BINDIR}/mafCoverage${EXE}
 
 test:	test1 test2
 %:	input/%.maf
 	${MKDIR} output
 	mafCoverage hg15 input/$@.maf > output/$@.txt
 	diff output/$@.txt expected/$@.txt
 	rm output/$@.txt
 
 compile: $O ${MYLIBS}
 	${CC} ${COPT} -o mafCoverage $O ${MYLIBS} $L
 
 clean::
 	rm -fr output ${O}