src/hg/ratStuff/mafOrtholog/makefile 1.2

1.2 2009/03/10 00:34:31 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/hg/ratStuff/mafOrtholog/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/ratStuff/mafOrtholog/makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -b -B -U 1000000 -r1.1 -r1.2
--- src/hg/ratStuff/mafOrtholog/makefile	16 Mar 2007 03:32:54 -0000	1.1
+++ src/hg/ratStuff/mafOrtholog/makefile	10 Mar 2009 00:34:31 -0000	1.2
@@ -1,21 +1,21 @@
 include ../../../inc/common.mk
 
-L = ${MYSQLLIBS} -lm
+L += ${MYSQLLIBS} -lm
 MYLIBDIR = ../../../../src/lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
 
 O = mafOrtholog.o
 
 mafOrtholog: $O ${MYLIBS}
 	${CC} ${COPT} -o ${BINDIR}/mafOrtholog $O ${MYLIBS} $L
 #	${STRIP} ${BINDIR}/mafOrtholog${EXE}
 
 test:
 	${MKDIR} output
 	mafOrtholog hg18 multiz6waySyn input/test.gp output/test.tab 
 	diff -x CVS -r expected output
 	rm -r output
 
 
 clean::
 	rm -fr output ${O} mafOrtholog