src/hg/extractPslForLfs/makefile 1.3

1.3 2009/03/10 00:33:47 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/hg/extractPslForLfs/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/extractPslForLfs/makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -B -U 1000000 -r1.2 -r1.3
--- src/hg/extractPslForLfs/makefile	19 Dec 2006 23:34:58 -0000	1.2
+++ src/hg/extractPslForLfs/makefile	10 Mar 2009 00:33:47 -0000	1.3
@@ -1,30 +1,30 @@
 include ../../inc/common.mk
 
-L = ${MYSQLLIBS} -lm 
+L += ${MYSQLLIBS} -lm 
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
 #COPT=-ggdb
 
 A = extractPslForLfs
 
 O = $A.o
 
 compile: $O 
 	${CC} ${COPT} ${CFLAGS} $O ${MYLIBS} ${L} 
 	mv ${AOUT} $A${EXE}
 	${STRIP} $A${EXE}
 	chmod a+rx $A
 	cp $A ${BINDIR}
 
 debug: $O
 	${CC} ${COPT} ${CFLAGS} $O ${MYLIBS} ${L} 
 	mv ${AOUT} $A${EXE}
 
 lib:
 	cd ../../lib && ${MAKE}
 
 tags:  
 	ctags *.c ../lib/*.c ../inc/*.h ../../lib/*.c ../../inc/*.h
 
 clean::
 	rm -f extractPslForLfs ${O}