src/utils/raFromTab/makefile 1.3
1.3 2009/03/10 00:34:49 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/utils/raFromTab/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/raFromTab/makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -B -U 1000000 -r1.2 -r1.3
--- src/utils/raFromTab/makefile 30 Mar 2007 19:52:43 -0000 1.2
+++ src/utils/raFromTab/makefile 10 Mar 2009 00:34:49 -0000 1.3
@@ -1,20 +1,20 @@
include ../../inc/common.mk
-L = -lm
+L += -lm
MYLIBDIR = ../../lib/${MACHTYPE}
MYLIBS = ${MYLIBDIR}/jkweb.a
O = raFromTab.o
raFromTab: $O ${MYLIBS}
${CC} ${COPT} -o ${BINDIR}/raFromTab $O ${MYLIBS} $L
${STRIP} ${BINDIR}/raFromTab${EXE}
test:
raFromTab in.tab cols=first,last,occupation out1.ra
diff expected1.ra out1.ra
raFromTab in.tab as=in.as out2.ra
diff expected2.ra out2.ra
clean:
rm -f $O