src/utils/rowsToCols/makefile 1.5
1.5 2009/03/10 00:34:50 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/utils/rowsToCols/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/rowsToCols/makefile,v
retrieving revision 1.4
retrieving revision 1.5
diff -b -B -U 1000000 -r1.4 -r1.5
--- src/utils/rowsToCols/makefile 26 Mar 2007 18:02:05 -0000 1.4
+++ src/utils/rowsToCols/makefile 10 Mar 2009 00:34:50 -0000 1.5
@@ -1,31 +1,31 @@
include ../../inc/common.mk
-L = -lm
+L += -lm
MYLIBDIR = ../../lib/${MACHTYPE}
MYLIBS = ${MYLIBDIR}/jkweb.a
O = rowsToCols.o
rowsToCols: $O ${MYLIBS}
${CC} ${COPT} -o ${BINDIR}/rowsToCols $O ${MYLIBS} $L
${STRIP} ${BINDIR}/rowsToCols${EXE}
clean:
rm -f $O
tests:
mkdir -p test/out
rowsToCols test/in/spaced test/out/spaced
diff test/expected/spaced test/out/spaced
rowsToCols -varCol test/in/spacedVarious test/out/spacedVarious
diff test/expected/spacedVarious test/out/spacedVarious
rowsToCols -tab test/in/tab test/out/tab
diff test/expected/tab test/out/tab
rowsToCols -tab -varCol test/in/tabVarious test/out/tabVarious
diff test/expected/tabVarious test/out/tabVarious
rowsToCols -fs=, test/in/comma test/out/comma
diff test/expected/comma test/out/comma
rowsToCols -fs=, -varCol test/in/commaVarious test/out/commaVarious
diff test/expected/commaVarious test/out/commaVarious
rowsToCols -fixed test/in/fixed test/out/fixed
diff test/expected/fixed test/out/fixed