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/scanIntrons/makefile src/scanIntrons/makefile
index d798872..94e3222 100644
--- src/scanIntrons/makefile
+++ src/scanIntrons/makefile
@@ -1,17 +1,17 @@
include ../inc/common.mk
O = scanIntrons.o
scanIntrons.exe: $(O) lib
- ${CC} ${COPT} ${CFLAGS} $O ../lib/$(MACHTYPE)/jkweb.a
+ ${CC} ${COPT} ${CFLAGS} $O ../lib/$(MACHTYPE)/jkweb.a ${L}
mv ${AOUT} scanIntrons.exe
chmod a+rx scanIntrons.exe
push:
mv scanIntrons.exe ${CGI_BIN}-${USER}
lib:
cd ../lib && ${MAKE}
clean::
rm -f ${O} scanIntrons.exe ${AOUT}