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