src/hg/regulate/regBedStats/makefile 1.1

1.1 2010/03/10 19:41:54 kent
Little program to calculate mean/std and quartile stats for a bunch of bed files.
Index: src/hg/regulate/regBedStats/makefile
===================================================================
RCS file: src/hg/regulate/regBedStats/makefile
diff -N src/hg/regulate/regBedStats/makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/hg/regulate/regBedStats/makefile	10 Mar 2010 19:41:54 -0000	1.1
@@ -0,0 +1,18 @@
+include ../../../inc/common.mk
+
+L += -lm
+MYLIBDIR = ../../../lib/${MACHTYPE}
+MYLIBS =  ${MYLIBDIR}/jkweb.a
+
+A = regBedStats
+O = regBedStats.o
+
+regBedStats: ${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}