bfbbdcad6821fa4a7acf957b7061f5164c0018ad
kent
  Tue Mar 22 18:01:12 2011 -0700
Utility to print out lines shared by all files (or from a column in all files) seems to work.
diff --git src/utils/linesInAllFiles/makefile src/utils/linesInAllFiles/makefile
new file mode 100644
index 0000000..26e448c
--- /dev/null
+++ src/utils/linesInAllFiles/makefile
@@ -0,0 +1,18 @@
+include ../../inc/common.mk
+
+L += -lm
+MYLIBDIR = ../../lib/${MACHTYPE}
+MYLIBS =  ${MYLIBDIR}/jkweb.a
+
+A = linesInAllFiles
+O = linesInAllFiles.o
+
+linesInAllFiles: ${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}