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/wormAli/makefile src/wormAli/makefile
index a0a9247..39c9b2b 100644
--- src/wormAli/makefile
+++ src/wormAli/makefile
@@ -1,15 +1,15 @@
include ../inc/common.mk
O = wormAli.o
wormAli.exe: $(O)
- ${CC} ${COPT} ${CFLAGS} $O ../lib/$(MACHTYPE)/jkOwnLib.a ../lib/$(MACHTYPE)/jkweb.a -lm
+ ${CC} ${COPT} ${CFLAGS} $O ../lib/$(MACHTYPE)/jkOwnLib.a ../lib/$(MACHTYPE)/jkweb.a ${L} -lm
mv ${AOUT} wormAli.exe
install: wormAli.exe
chmod g-w wormAli.exe
chmod a+rx wormAli.exe
mv wormAli.exe ${CGI_BIN}/
clean::
rm -f wormAli.exe ${AOUT} ${O}