src/utils/gtfToGenePred/makefile 1.3

1.3 2009/03/10 00:34:49 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/utils/gtfToGenePred/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/gtfToGenePred/makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -B -U 1000000 -r1.2 -r1.3
--- src/utils/gtfToGenePred/makefile	21 Feb 2008 02:13:26 -0000	1.2
+++ src/utils/gtfToGenePred/makefile	10 Mar 2009 00:34:49 -0000	1.3
@@ -1,18 +1,18 @@
 include ../../inc/common.mk
 
-L = -lm ${MYSQLLIBS}
+L += -lm ${MYSQLLIBS}
 MYLIBDIR = ../../../src/lib/$(MACHTYPE)
 MYLIBS = ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a 
 HG_INC=-I../../inc -I../../hg/inc
 
 O = gtfToGenePred.o
 
 gtfToGenePred: $O $(MYLIBS)
 	${CC} ${COPT} ${CFLAGS} -o $(BINDIR)/gtfToGenePred${EXE} $O $(MYLIBS) $L
 
 test:
 	(cd tests && ${MAKE} test)
 
 clean:
 	rm $O
 	(cd tests && ${MAKE} clean)