src/hg/mouseStuff/axtToPsl/makefile 1.13

1.13 2009/03/10 00:34:15 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/hg/mouseStuff/axtToPsl/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/mouseStuff/axtToPsl/makefile,v
retrieving revision 1.12
retrieving revision 1.13
diff -b -B -U 1000000 -r1.12 -r1.13
--- src/hg/mouseStuff/axtToPsl/makefile	19 Dec 2006 23:35:14 -0000	1.12
+++ src/hg/mouseStuff/axtToPsl/makefile	10 Mar 2009 00:34:15 -0000	1.13
@@ -1,14 +1,14 @@
 include ../../../inc/common.mk
 
-L = -lm
+L += -lm
 MYLIBDIR = ../../../../src/lib/$(MACHTYPE)
 MYLIBS =  $(MYLIBDIR)/jkhgap.a $(MYLIBDIR)/jkweb.a
 
 O = axtToPsl.o
 
 axtToPsl: $O $(MYLIBS)
 	${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/axtToPsl $O $(MYLIBS) $L
 	${STRIP} ${BINDIR}/axtToPsl${EXE}
 
 test:
 	(cd tests && ${MAKE} test)