src/utils/raSqlQuery/makefile 1.4

1.4 2009/11/22 02:01:30 kent
Adding 'strict' option, to only put in ones where database table exists.
Index: src/utils/raSqlQuery/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/raSqlQuery/makefile,v
retrieving revision 1.3
retrieving revision 1.4
diff -b -B -U 1000000 -r1.3 -r1.4
--- src/utils/raSqlQuery/makefile	22 Nov 2009 00:25:26 -0000	1.3
+++ src/utils/raSqlQuery/makefile	22 Nov 2009 02:01:30 -0000	1.4
@@ -1,18 +1,18 @@
 include ../../inc/common.mk
 
-L += -lm
+L += $(MYSQLLIBS) -lm -lz
 MYLIBDIR = ../../lib/${MACHTYPE}
 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}