From d900b9fd63de27f100db7ba83ef00bdec78c90f2 Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Wed, 24 Mar 2004 20:12:26 +0000 Subject: [PATCH] Added cvsclean rule. --- configure/RULES_TOP | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure/RULES_TOP b/configure/RULES_TOP index 4478765ba..997eece6d 100644 --- a/configure/RULES_TOP +++ b/configure/RULES_TOP @@ -30,6 +30,9 @@ endif distclean: realclean realuninstall +cvsclean: + @$(PERL) $(TOOLS)/cvsclean.pl + realuninstall: @$(RMDIR) $(INSTALL_LOCATION_BIN) $(INSTALL_LOCATION_LIB) @$(RMDIR) $(INSTALL_DBD) $(INSTALL_INCLUDE) $(INSTALL_DOC)\ @@ -66,10 +69,12 @@ help: @echo " uninstall - Cleans directories created by the install." @echo " realuninstall - Removes ALL install dirs" @echo " distclean - Same as realclean realuninstall." + @echo " cvsclean - Removes cvs .#* files in all dirs of directory tree" @echo " help - Prints this list of valid make targets " @echo "Indiv. object targets are supported by O. level Makefile .e.g" @echo " xxxRecord.o" .PHONY : $(uninstallArchTargets) .PHONY : uninstall help cleandirs distclean uninstallDirs realuninstall +.PHONY : cvsclean