src/hg/ratStuff/mafSplit/makefile 1.4
1.4 2010/03/17 00:43:04 braney
add test. Prolly need to change the target to something other than test?
Index: src/hg/ratStuff/mafSplit/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/ratStuff/mafSplit/makefile,v
retrieving revision 1.3
retrieving revision 1.4
diff -b -B -U 1000000 -r1.3 -r1.4
--- src/hg/ratStuff/mafSplit/makefile 10 Mar 2009 00:34:31 -0000 1.3
+++ src/hg/ratStuff/mafSplit/makefile 17 Mar 2010 00:43:04 -0000 1.4
@@ -1,14 +1,17 @@
include ../../../inc/common.mk
L += $(MYSQLLIBS) -lm
MYLIBDIR = ../../../lib/$(MACHTYPE)
MYLIBS = $(MYLIBDIR)/jkhgap.a $(MYLIBDIR)/jkweb.a
A = mafSplit
O = ${A}.o
${A}: compile
${STRIP} $(BINDIR)/${A}${EXE}
compile: $O ${MYLIBS}
${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/${A} $O ${MYLIBS} ${L}
+
+dotest:
+ ( cd test ; make )