src/hg/protein/spTest/makefile 1.9
1.9 2009/03/10 00:34:27 galt
Modifications to make system to support optional external libraries, motivated by need for SSL
Index: src/hg/protein/spTest/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/protein/spTest/makefile,v
retrieving revision 1.8
retrieving revision 1.9
diff -b -B -U 1000000 -r1.8 -r1.9
--- src/hg/protein/spTest/makefile 9 Jul 2005 07:04:29 -0000 1.8
+++ src/hg/protein/spTest/makefile 10 Mar 2009 00:34:27 -0000 1.9
@@ -1,22 +1,22 @@
include ../../../inc/common.mk
-L = ${MYSQLLIBS} -lm
+L += ${MYSQLLIBS} -lm
MYLIBDIR = ../../../lib/${MACHTYPE}
MYLIBS = ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
O = spTest.o
spTest: $O ${MYLIBS}
${CC} ${COPT} -o ${BINDIR}/spTest $O ${MYLIBS} $L
${STRIP} ${BINDIR}/spTest${EXE}
test:
${MKDIR} output
spTest swissProt Q9FFH7 > output/Q9FFH7
diff expected/Q9FFH7 output/Q9FFH7
spTest swissProt P29312 > output/P29312
diff expected/P29312 output/P29312
rm -r output
clean::
rm -fr output ${O}