0766f8ef11c8e73a7351fbbc5d5ae9f987941a54
angie
  Fri Mar 11 15:12:00 2011 -0800
Mark rightly pointed out that these programs I used for quick testingshould go in lib/tests with proper testcases, not in oneShot/.
Test cases coming up...

diff --git src/oneShot/tabixFetch/makefile src/oneShot/tabixFetch/makefile
deleted file mode 100644
index 77426f2..0000000
--- src/oneShot/tabixFetch/makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-include ../../inc/common.mk
-
-L += -lm
-MYLIBDIR = ../../lib/${MACHTYPE}
-MYLIBS =  ${MYLIBDIR}/jkweb.a
-
-A = tabixFetch
-O = tabixFetch.o
-
-tabixFetch: ${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}