From: Guido van Rossum Date: Thu, 10 Oct 1996 19:12:47 +0000 (+0000) Subject: Add a dependency on clobber to the boot target. Now, if you run "make X-Git-Tag: v1.4~109 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=43e6661d252a5f72fefdae8570aa97071c1a630d;p=thirdparty%2FPython%2Fcpython.git Add a dependency on clobber to the boot target. Now, if you run "make -f Makefile.pre.in boot", all traces of previous runs are removed. --- diff --git a/Misc/Makefile.pre.in b/Misc/Makefile.pre.in index dcc57f2ad29a..e9caa801c9ea 100644 --- a/Misc/Makefile.pre.in +++ b/Misc/Makefile.pre.in @@ -245,7 +245,7 @@ sedscript: $(MAKEFILE) echo "/^BASESETUP=/s%=.*%= $(BASESETUP)%" >>sedscript # Bootstrap target -boot: +boot: clobber VERSION=`python -c "import sys; print sys.version[:3]"`; \ installdir=`python -c "import sys; print sys.prefix"`; \ exec_installdir=`python -c "import sys; print sys.exec_prefix"`; \