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/oneShot/chkGlue/makefile src/oneShot/chkGlue/makefile
index feab415..46e55e7 100755
--- src/oneShot/chkGlue/makefile
+++ src/oneShot/chkGlue/makefile
@@ -1,13 +1,13 @@
 include ../../inc/common.mk
 
 
 O = chkGlue.o 
 
 chkGlue.exe: $(O)
-	${CC} ${COPT} ${CFLAGS} $O ../../lib/$(MACHTYPE)/jkweb.a
+	${CC} ${COPT} ${CFLAGS} $O ../../lib/$(MACHTYPE)/jkweb.a ${L}
 	mv ${AOUT} chkGlue.exe
 	chmod a+rx chkGlue.exe
 	mv chkGlue.exe ../../cgi-bin
 
 clean::
 	rm -f ${O}