adaefb41c47c8ed44b75ad2793770bae5070e71b
hiram
  Fri Jun 18 20:36:26 2010 -0700
last bunch of makefiles that need a clean target
diff --git src/utils/spacedToTab/makefile src/utils/spacedToTab/makefile
index 277042e..00b24e1 100644
--- src/utils/spacedToTab/makefile
+++ src/utils/spacedToTab/makefile
@@ -1,18 +1,21 @@
 include ../../inc/common.mk
 
 L += -lm
 MYLIBDIR = ../../lib/$(MACHTYPE)
 MYLIBS =  $(MYLIBDIR)/jkweb.a
 
 O = spacedToTab.o
 
 spacedToTab: $O $(MYLIBS)
 	${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/spacedToTab $O $(MYLIBS) $L
 	${STRIP} ${BINDIR}/spacedToTab${EXE}
 
 test:
 	spacedToTab in.txt out.tab
 	diff expected.tab out.tab
 	spacedToTab in.txt -sizes=17,21,22 out2.tab
 	diff expected2.tab out2.tab
+	rm -f out.tab out2.tab
 
+clean::
+	rm -f ${O} out.tab out2.tab