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/utils/countChars/makefile src/utils/countChars/makefile
index 86cea47..16778bf 100644
--- src/utils/countChars/makefile
+++ src/utils/countChars/makefile
@@ -1,11 +1,11 @@
 include ../../inc/common.mk
 
 
 O = countChars.o 
 
 countChars: $O
-	${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/countChars $O ../../lib/$(MACHTYPE)/jkweb.a 
+	${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/countChars $O ../../lib/$(MACHTYPE)/jkweb.a ${L}
 	${STRIP} ${BINDIR}/countChars${EXE}
 
 clean::
 	rm -f ${O}