From c5cfcb4a483456de67394e9e9ec94b9252587750 Mon Sep 17 00:00:00 2001 From: Neil Schemenauer Date: Mon, 19 Feb 2001 04:35:11 +0000 Subject: [PATCH] Fix bug in clean target (closes SF patch 103864 and bug 132879). The clobber target now removes some configure files (like it did before). --- Makefile.pre.in | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/Makefile.pre.in b/Makefile.pre.in index c08c4756bb2..08ba3e18c61 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -743,25 +743,19 @@ TAGS:: # files, which clobber removes those as well clean: - # avoid long command lines, same as LIBRARY_OBJS MAINOBJ PGOBJS - -rm -f $(PARSER_OBJS) - -rm -f $(OBJECT_OBJS) - -rm -f $(PYTHON_OBJS) - -rm -f $(MODULE_OBJS) $(SIGNAL_OBJS) Modules/getbuildinfo.o - -rm -f $(MODOBJS) $(MAINOBJ) $(PGOBJS) - if test -f build; then find build -name '*.o' -exec rm -f {} ';' ; fi + find . -name '*.o' -exec rm -f {} ';' find $(srcdir) -name '*.py[co]' -exec rm -f {} ';' clobber: clean - -rm -f tags TAGS $(PYTHON) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \ - Modules/*.so Modules/*.sl Parser/pgen + -rm -f $(PYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \ + Modules/*.so Modules/*.sl tags TAGS \ + config.cache config.log config.h Modules/config.c -rm -rf build # Make things extra clean, before making a distribution: # remove all generated files, even Makefile[.pre] distclean: clobber -rm -f core Makefile Makefile.pre buildno config.status \ - config.log config.cache config.h Modules/config.c \ Modules/Setup Modules/Setup.local Modules/Setup.config find $(srcdir) '(' -name '*.fdc' -o -name '*~' \ -o -name '[@,#]*' -o -name '*.old' \