9bfcf5e486d3ff0032e427a6ccf478fb776f5e0f
hiram
  Mon Jun 14 11:42:27 2010 -0700
fixing makefiles to have clean targets
diff --git src/scanIntrons/makefile src/scanIntrons/makefile
index 86b9544..d798872 100644
--- src/scanIntrons/makefile
+++ src/scanIntrons/makefile
@@ -1,14 +1,17 @@
 include ../inc/common.mk
 
 O = scanIntrons.o
 
 scanIntrons.exe: $(O) lib
 	${CC} ${COPT} ${CFLAGS} $O ../lib/$(MACHTYPE)/jkweb.a
 	mv ${AOUT} scanIntrons.exe
 	chmod a+rx scanIntrons.exe
 
 push:	
 	mv scanIntrons.exe ${CGI_BIN}-${USER}
 
 lib: 
 	cd ../lib && ${MAKE}
+
+clean::
+	rm -f ${O} scanIntrons.exe ${AOUT}