From 5420bc316701bfb15d50ac9925ab6086316218fd Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 29 Aug 2007 23:35:30 +0000 Subject: [PATCH] Don't delete test output when "make clean" is run -- only when "make clobber" is run. (Thanks Thomas W. for pointing this out!) --- Makefile.pre.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.pre.in b/Makefile.pre.in index 0911336a53..1a881c7ec1 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1031,13 +1031,13 @@ rmtestturds: -rm -f *.txt -rm -f gb-18030-2000.xml -clean: pycremoval rmtestturds +clean: pycremoval find . -name '*.o' -exec rm -f {} ';' find . -name '*.s[ol]' -exec rm -f {} ';' find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true -clobber: clean +clobber: clean rmtestturds -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \ tags TAGS \ config.cache config.log pyconfig.h Modules/config.c -- 2.40.0