src/hg/oneShot/tdbRewriteReduceReplaces/makefile 1.1
1.1 2009/12/09 02:28:29 kent
Rewriter that will convert replacement records to override records when possible, and otherwise add comment that it is a replacement record seems to work.
Index: src/hg/oneShot/tdbRewriteReduceReplaces/makefile
===================================================================
RCS file: src/hg/oneShot/tdbRewriteReduceReplaces/makefile
diff -N src/hg/oneShot/tdbRewriteReduceReplaces/makefile
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/hg/oneShot/tdbRewriteReduceReplaces/makefile 9 Dec 2009 02:28:29 -0000 1.1
@@ -0,0 +1,18 @@
+include ../../../inc/common.mk
+
+L += -lm
+MYLIBDIR = ../../../lib/${MACHTYPE}
+MYLIBS = ${MYLIBDIR}/jkweb.a
+
+A = tdbRewriteReduceReplaces
+O = tdbRewriteReduceReplaces.o
+
+tdbRewriteReduceReplaces: ${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}