src/utils/textHistogram/makefile 1.12

1.12 2009/03/10 00:34:50 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/utils/textHistogram/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/textHistogram/makefile,v
retrieving revision 1.11
retrieving revision 1.12
diff -b -B -U 1000000 -r1.11 -r1.12
--- src/utils/textHistogram/makefile	21 Feb 2008 02:13:26 -0000	1.11
+++ src/utils/textHistogram/makefile	10 Mar 2009 00:34:50 -0000	1.12
@@ -1,14 +1,14 @@
 include ../../inc/common.mk
 
-L = -lm
+L += -lm
 MYLIBDIR = ../../lib/$(MACHTYPE)
 MYLIBS =  $(MYLIBDIR)/jkweb.a
 
 O = textHistogram.o
 
 textHistogram: $O $(MYLIBS)
 	${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/textHistogram $O $(MYLIBS) $L
 	${STRIP} ${BINDIR}/textHistogram${EXE}
 
 clean:
 	rm -f ${O}