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/protDust/makefile src/protDust/makefile
index 650f265..0fa0103 100644
--- src/protDust/makefile
+++ src/protDust/makefile
@@ -1,14 +1,14 @@
 include ../inc/common.mk
 
 O = protDust.o 
 
 protDust.exe: $(O)
-	${CC} ${COPT} ${CFLAGS} $O ../lib/$(MACHTYPE)/jkweb.a
+	${CC} ${COPT} ${CFLAGS} $O ../lib/$(MACHTYPE)/jkweb.a ${L}
 	mv ${AOUT} protDust.exe
 	chmod a+rx protDust.exe
 
 push:	
 	mv protDust.exe ${CGI_BIN}-${USER}
 
 clean::
 	rm -f ${O} protDust.exe ${AOUT}