f56903393fa2ff726fab62f97fe8cd10b302fdff
angie
  Fri Feb 25 11:26:56 2011 -0800
Feature #2820 (tabix: add as optional linked library in kent/src):Wow, adding an external lib dependency to linefile exposed the fact
that many makefiles did not include ${L} properly.

diff --git src/hg/autoXml/makefile src/hg/autoXml/makefile
index c3061bd..8c9d06a 100644
--- src/hg/autoXml/makefile
+++ src/hg/autoXml/makefile
@@ -1,19 +1,19 @@
 include ../../inc/common.mk
 
 
 MYLIBDIR = ../../lib/$(MACHTYPE)
 #MYLIBDIR = $(HOME)/src/lib/$(MACHTYPE)
 MYLIBS =  $(MYLIBDIR)/jkhgap.a $(MYLIBDIR)/jkweb.a
 
 O = autoXml.o
 
 autoXml: $O $(MYLIBS)
-	${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/autoXml $O $(MYLIBS)
+	${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/autoXml $O $(MYLIBS) ${L}
 #	${STRIP} ${BINDIR}/autoXml${EXE}
 
 test::
 	doTest
 
 clean:
 	rm -f *.o
 	rm -rf test/*/out