src/utils/raSqlQuery/makefile 1.2

1.2 2009/11/20 07:41:56 kent
Adding in merge option. Supporting 'not like' operation. Splitting into modules.
Index: src/utils/raSqlQuery/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/raSqlQuery/makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -b -B -U 1000000 -r1.1 -r1.2
--- src/utils/raSqlQuery/makefile	20 Nov 2009 00:24:55 -0000	1.1
+++ src/utils/raSqlQuery/makefile	20 Nov 2009 07:41:56 -0000	1.2
@@ -1,18 +1,18 @@
 include ../../inc/common.mk
 
 L += -lm
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkweb.a
 
 A = raSqlQuery
-O = raSqlQuery.o
+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}