src/hg/logCrawl/ticksToWig/makefile 1.1

1.1 2009/09/09 19:11:27 kent
Utility to convert tab-separated files with Unix timestamps and optionally a number to wiggle plots seems to work.
Index: src/hg/logCrawl/ticksToWig/makefile
===================================================================
RCS file: src/hg/logCrawl/ticksToWig/makefile
diff -N src/hg/logCrawl/ticksToWig/makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/hg/logCrawl/ticksToWig/makefile	9 Sep 2009 19:11:27 -0000	1.1
@@ -0,0 +1,18 @@
+include ../../../inc/common.mk
+
+L += -lm
+MYLIBDIR = ../../../lib/${MACHTYPE}
+MYLIBS =  ${MYLIBDIR}/jkweb.a
+
+A = ticksToWig
+O = ticksToWig.o
+
+ticksToWig: ${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}