src/utils/raSqlQuery/makefile 1.3
1.3 2009/11/22 00:25:26 kent
Making it deal with overrides. Making it start to work with our usual trackDb directory structure when using -db= flag.
Index: src/utils/raSqlQuery/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/raSqlQuery/makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -B -U 1000000 -r1.2 -r1.3
--- src/utils/raSqlQuery/makefile 20 Nov 2009 07:41:56 -0000 1.2
+++ src/utils/raSqlQuery/makefile 22 Nov 2009 00:25:26 -0000 1.3
@@ -1,18 +1,18 @@
include ../../inc/common.mk
L += -lm
MYLIBDIR = ../../lib/${MACHTYPE}
-MYLIBS = ${MYLIBDIR}/jkweb.a
+MYLIBS = ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
A = raSqlQuery
O = raSqlQuery.o rqlParse.o rqlEval.o raRecord.o
raSqlQuery: ${O} ${MYLIBS}
${CC} ${COPT} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} $L
${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
compile:: ${O}
${CC} ${COPT} -o ${A}${EXE} ${O} ${MYLIBS} $L
clean::
rm -f ${A} ${O}