src/hg/oneShot/tdbRewriteAddReplaces/makefile 1.1
1.1 2009/12/08 23:38:23 kent
Rewriter that adds 'replace' on track lines in subdirectories where are redefining an old track rather than defining a new track at that level.
Index: src/hg/oneShot/tdbRewriteAddReplaces/makefile
===================================================================
RCS file: src/hg/oneShot/tdbRewriteAddReplaces/makefile
diff -N src/hg/oneShot/tdbRewriteAddReplaces/makefile
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/hg/oneShot/tdbRewriteAddReplaces/makefile 8 Dec 2009 23:38:23 -0000 1.1
@@ -0,0 +1,18 @@
+include ../../../inc/common.mk
+
+L += -lm
+MYLIBDIR = ../../../lib/${MACHTYPE}
+MYLIBS = ${MYLIBDIR}/jkweb.a
+
+A = tdbRewriteAddReplaces
+O = tdbRewriteAddReplaces.o
+
+tdbRewriteAddReplaces: ${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}