src/hg/protein/kgGetPep/makefile 1.5

1.5 2009/03/10 00:34:26 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/hg/protein/kgGetPep/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/protein/kgGetPep/makefile,v
retrieving revision 1.4
retrieving revision 1.5
diff -b -B -U 1000000 -r1.4 -r1.5
--- src/hg/protein/kgGetPep/makefile	9 Jul 2005 07:04:28 -0000	1.4
+++ src/hg/protein/kgGetPep/makefile	10 Mar 2009 00:34:26 -0000	1.5
@@ -1,21 +1,21 @@
 include ../../../inc/common.mk
 
-L = ${MYSQLLIBS} -lm
+L += ${MYSQLLIBS} -lm
 MYLIBDIR = ../../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
 
 A = kgGetPep
 O = $A.o
 
 $A: $O ${MYLIBS}
 	${CC} ${COPT} ${HG_WARN} ${HG_DEFS} \
 		-o ${BINDIR}/$A $O ${MYLIBS} $L
 	${STRIP} ${BINDIR}/$A${EXE}
 
 compile: $O 
 	${CC} $O ${MYLIBS} ${L}
 	mv ${AOUT} $A${EXE}
 	chmod a+rx $A
 
 clean::
 	rm -f $O $A