src/hg/regulate/regClusterMakeTableOfTables/makefile 1.1
1.1 2010/03/08 23:35:07 kent
First cut of some code to combine ENCODE regulatory tracks into a single track done.
Index: src/hg/regulate/regClusterMakeTableOfTables/makefile
===================================================================
RCS file: src/hg/regulate/regClusterMakeTableOfTables/makefile
diff -N src/hg/regulate/regClusterMakeTableOfTables/makefile
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/hg/regulate/regClusterMakeTableOfTables/makefile 8 Mar 2010 23:35:07 -0000 1.1
@@ -0,0 +1,18 @@
+include ../../../inc/common.mk
+
+L += -lm
+MYLIBDIR = ../../../lib/${MACHTYPE}
+MYLIBS = ${MYLIBDIR}/jkweb.a
+
+A = regClusterMakeTableOfTables
+O = regClusterMakeTableOfTables.o
+
+regClusterMakeTableOfTables: ${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}