src/utils/pslLiftSubrangeBlat/makefile 1.1

1.1 2010/06/02 07:07:45 markd
added program to lift blat subrange queries
Index: src/utils/pslLiftSubrangeBlat/makefile
===================================================================
RCS file: src/utils/pslLiftSubrangeBlat/makefile
diff -N src/utils/pslLiftSubrangeBlat/makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/utils/pslLiftSubrangeBlat/makefile	2 Jun 2010 07:07:45 -0000	1.1
@@ -0,0 +1,22 @@
+include ../../inc/common.mk
+HG_INC += -I../../hg/inc
+
+L += $(MYSQLLIBS) -lm
+MYLIBDIR = ../../lib/${MACHTYPE}
+MYLIBS =  $(MYLIBDIR)/jkhgap.a ${MYLIBDIR}/jkweb.a
+
+A = pslLiftSubrangeBlat
+O = pslLiftSubrangeBlat.o
+
+pslLiftSubrangeBlat: ${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
+
+test::
+	cd tests && ${MAKE} test
+
+clean::
+	rm -f ${A}${EXE} ${O}