7a09cffe08484c6e1fc843a61edd858203872853
braney
  Thu Jan 12 15:44:14 2012 -0800
a little utility to check to see if a twoBit file has duplicated sequences
diff --git src/utils/twoBitDup/makefile src/utils/twoBitDup/makefile
new file mode 100644
index 0000000..3f1c0e3
--- /dev/null
+++ src/utils/twoBitDup/makefile
@@ -0,0 +1,18 @@
+include ../../inc/common.mk
+
+L += -lm
+MYLIBDIR = ../../lib/${MACHTYPE}
+MYLIBS =  ${MYLIBDIR}/jkweb.a
+
+A = twoBitDup
+O = twoBitDup.o
+
+twoBitDup: ${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}