dbfc0218144b3b00f7ab1869478239535f6597ae
kent
  Tue Apr 17 17:50:59 2012 -0700
A handy little text utility, sort of a text PCR.
diff --git src/utils/textBetween/makefile src/utils/textBetween/makefile
new file mode 100644
index 0000000..501ea6a
--- /dev/null
+++ src/utils/textBetween/makefile
@@ -0,0 +1,18 @@
+include ../../inc/common.mk
+
+L += -lm
+MYLIBDIR = ../../lib/${MACHTYPE}
+MYLIBS =  ${MYLIBDIR}/jkweb.a
+
+A = textBetween
+O = textBetween.o
+
+textBetween: ${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}