adaefb41c47c8ed44b75ad2793770bae5070e71b
hiram
  Fri Jun 18 20:36:26 2010 -0700
last bunch of makefiles that need a clean target
diff --git src/utils/genFedTableDef/makefile src/utils/genFedTableDef/makefile
index e1c38da..7eb6f1c 100644
--- src/utils/genFedTableDef/makefile
+++ src/utils/genFedTableDef/makefile
@@ -1,36 +1,38 @@
 
 include ../../inc/common.mk
 
 L += -lm $(MYSQLLIBS)
 MYLIBDIR = ../../lib/$(MACHTYPE)
 MYLIBS =  $(MYLIBDIR)/jkhgap.a $(MYLIBDIR)/jkweb.a
 
 A = genFedTableDef
 
 O = $A.o
 
 my: compile
 	mv $A ${BINDIR}/$A
 
 mgsc: compile
 	mv $A /usr/local/apache/cgi-bin-mgsc/$A
 
 alpha: compile
 	mv $A /usr/local/apache/cgi-bin/$A
 
 beta: compile
 	mv $A /usr/local/apache/cgi-bin-beta/$A
 
 
 compile: $O 
 	${CC} ${COPT} ${CFLAGS} $O $(MYLIBS) $(L) 
 	mv ${AOUT} $A${EXE}
 #	${STRIP} $A${EXE}
 	chmod a+rx $A
 
 lib:
 	cd ../../lib && ${MAKE}
 
 tags: 
 	ctags *.h *.c ../lib/*.c ../inc/*.h ../../lib/*.c ../../inc/*.h
 
+clean::
+	rm -f ${O}