9bfcf5e486d3ff0032e427a6ccf478fb776f5e0f
hiram
  Mon Jun 14 11:42:27 2010 -0700
fixing makefiles to have clean targets
diff --git src/weblet/counter/makefile src/weblet/counter/makefile
index 7e0f4b7..2833ff0 100755
--- src/weblet/counter/makefile
+++ src/weblet/counter/makefile
@@ -1,13 +1,16 @@
 include ../../inc/common.mk
 
 
 O = counter.o 
 
 counter: $(O)
 	${CC} ${COPT} ${CFLAGS} $O ../../lib/$(MACHTYPE)/jkweb.a
 	mv ${AOUT} counter.exe
 	chmod a+rx counter.exe
 	${STRIP} counter.exe${EXE}
 
 push:
 	mv counter.exe ${CGI_BIN}-${USER}
+
+clean::
+	rm -f ${O} ${AOUT} counter.exe