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.
This commit is contained in:
Guido van Rossum 1996-10-10 19:12:47 +00:00
parent b030bc026e
commit 43e6661d25

View file

@ -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"`; \