36bf509e635a8946d0c566f307bf68a9b960a375
kent
  Sat Mar 19 14:20:45 2011 -0700
Big wig merge utility seems to work.
diff --git src/utils/bigWigMerge/makefile src/utils/bigWigMerge/makefile
new file mode 100644
index 0000000..98d7b87
--- /dev/null
+++ src/utils/bigWigMerge/makefile
@@ -0,0 +1,18 @@
+include ../../inc/common.mk
+
+L += -lm
+MYLIBDIR = ../../lib/${MACHTYPE}
+MYLIBS =  ${MYLIBDIR}/jkweb.a
+
+A = bigWigMerge
+O = bigWigMerge.o
+
+bigWigMerge: ${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}${EXE} ${O}