8d54997b3b9aa0d0b83980ed4faeada3a99f903d
hiram
  Tue Sep 14 14:45:22 2010 -0700
properly use EXE extension
diff --git src/weblet/counter/makefile src/weblet/counter/makefile
index 290e04b..6a1174e 100755
--- src/weblet/counter/makefile
+++ src/weblet/counter/makefile
@@ -1,17 +1,17 @@
 include ../../inc/common.mk
 
 
 O = counter.o 
 L += -lz
 
 counter: $(O)
 	${CC} ${COPT} ${CFLAGS} $O ../../lib/$(MACHTYPE)/jkweb.a ${L}
 	mv ${AOUT} counter${EXE}
 	chmod a+rx counter${EXE}
 	${STRIP} counter${EXE}
 
 push:
 	mv counter.exe ${CGI_BIN}-${USER}
 
 clean::
-	rm -f ${O} ${AOUT} counter.exe
+	rm -f ${O} ${AOUT} counter${EXE}