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