2007-06-14 Paolo Bonzini <bonzini@gnu.org>
* Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile. (distclean-stage[+id+]): Possibly delete stage_last. * Makefile.in: Regenerate.
This commit is contained in:
parent
e8b9fee01f
commit
28826d8fb1
|
@ -1,3 +1,9 @@
|
||||||
|
2007-06-14 Paolo Bonzini <bonzini@gnu.org>
|
||||||
|
|
||||||
|
* Makefile.tpl (cleanstrap): Don't delete the toplevel Makefile.
|
||||||
|
(distclean-stage[+id+]): Possibly delete stage_last.
|
||||||
|
* Makefile.in: Regenerate.
|
||||||
|
|
||||||
2007-06-07 Ben Elliston <bje@au.ibm.com>
|
2007-06-07 Ben Elliston <bje@au.ibm.com>
|
||||||
|
|
||||||
* config.sub, config.guess: Update from upstream sources.
|
* config.sub, config.guess: Update from upstream sources.
|
||||||
|
|
16
Makefile.in
16
Makefile.in
|
@ -47478,6 +47478,7 @@ do-clean: clean-stage1
|
||||||
.PHONY: distclean-stage1
|
.PHONY: distclean-stage1
|
||||||
distclean-stage1::
|
distclean-stage1::
|
||||||
@: $(MAKE); $(stage)
|
@: $(MAKE); $(stage)
|
||||||
|
@test "`cat stage_last`" != stage1 || rm -f stage_last
|
||||||
rm -rf stage1-*
|
rm -rf stage1-*
|
||||||
|
|
||||||
|
|
||||||
|
@ -47709,6 +47710,7 @@ distclean-stage1:: distclean-stage2
|
||||||
.PHONY: distclean-stage2
|
.PHONY: distclean-stage2
|
||||||
distclean-stage2::
|
distclean-stage2::
|
||||||
@: $(MAKE); $(stage)
|
@: $(MAKE); $(stage)
|
||||||
|
@test "`cat stage_last`" != stage2 || rm -f stage_last
|
||||||
rm -rf stage2-*
|
rm -rf stage2-*
|
||||||
|
|
||||||
|
|
||||||
|
@ -47983,11 +47985,20 @@ distclean-stage2:: distclean-stage3
|
||||||
.PHONY: distclean-stage3
|
.PHONY: distclean-stage3
|
||||||
distclean-stage3::
|
distclean-stage3::
|
||||||
@: $(MAKE); $(stage)
|
@: $(MAKE); $(stage)
|
||||||
|
@test "`cat stage_last`" != stage3 || rm -f stage_last
|
||||||
rm -rf stage3-* compare
|
rm -rf stage3-* compare
|
||||||
|
|
||||||
|
|
||||||
.PHONY: cleanstrap
|
.PHONY: cleanstrap
|
||||||
cleanstrap: distclean bootstrap
|
cleanstrap: do-distclean local-clean
|
||||||
|
echo stage3 > stage_final
|
||||||
|
@r=`${PWD_COMMAND}`; export r; \
|
||||||
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||||
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stage3-bubble
|
||||||
|
@: $(MAKE); $(unstage)
|
||||||
|
@r=`${PWD_COMMAND}`; export r; \
|
||||||
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||||
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
||||||
|
|
||||||
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
||||||
|
|
||||||
|
@ -48260,6 +48271,7 @@ distclean-stage3:: distclean-stage4
|
||||||
.PHONY: distclean-stage4
|
.PHONY: distclean-stage4
|
||||||
distclean-stage4::
|
distclean-stage4::
|
||||||
@: $(MAKE); $(stage)
|
@: $(MAKE); $(stage)
|
||||||
|
@test "`cat stage_last`" != stage4 || rm -f stage_last
|
||||||
rm -rf stage4-* compare3
|
rm -rf stage4-* compare3
|
||||||
|
|
||||||
|
|
||||||
|
@ -48470,6 +48482,7 @@ distclean-stage1:: distclean-stageprofile
|
||||||
.PHONY: distclean-stageprofile
|
.PHONY: distclean-stageprofile
|
||||||
distclean-stageprofile::
|
distclean-stageprofile::
|
||||||
@: $(MAKE); $(stage)
|
@: $(MAKE); $(stage)
|
||||||
|
@test "`cat stage_last`" != stageprofile || rm -f stage_last
|
||||||
rm -rf stageprofile-*
|
rm -rf stageprofile-*
|
||||||
|
|
||||||
|
|
||||||
|
@ -48701,6 +48714,7 @@ distclean-stageprofile:: distclean-stagefeedback
|
||||||
.PHONY: distclean-stagefeedback
|
.PHONY: distclean-stagefeedback
|
||||||
distclean-stagefeedback::
|
distclean-stagefeedback::
|
||||||
@: $(MAKE); $(stage)
|
@: $(MAKE); $(stage)
|
||||||
|
@test "`cat stage_last`" != stagefeedback || rm -f stage_last
|
||||||
rm -rf stagefeedback-*
|
rm -rf stagefeedback-*
|
||||||
|
|
||||||
|
|
||||||
|
|
11
Makefile.tpl
11
Makefile.tpl
|
@ -1361,12 +1361,21 @@ do-clean: clean-stage[+id+]
|
||||||
.PHONY: distclean-stage[+id+]
|
.PHONY: distclean-stage[+id+]
|
||||||
distclean-stage[+id+]::
|
distclean-stage[+id+]::
|
||||||
@: $(MAKE); $(stage)
|
@: $(MAKE); $(stage)
|
||||||
|
@test "`cat stage_last`" != stage[+id+] || rm -f stage_last
|
||||||
rm -rf stage[+id+]-* [+
|
rm -rf stage[+id+]-* [+
|
||||||
IF compare-target +][+compare-target+] [+ ENDIF compare-target +]
|
IF compare-target +][+compare-target+] [+ ENDIF compare-target +]
|
||||||
|
|
||||||
[+ IF cleanstrap-target +]
|
[+ IF cleanstrap-target +]
|
||||||
.PHONY: [+cleanstrap-target+]
|
.PHONY: [+cleanstrap-target+]
|
||||||
[+cleanstrap-target+]: distclean [+bootstrap-target+]
|
[+cleanstrap-target+]: do-distclean local-clean
|
||||||
|
echo stage[+id+] > stage_final
|
||||||
|
@r=`${PWD_COMMAND}`; export r; \
|
||||||
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||||
|
$(MAKE) $(RECURSE_FLAGS_TO_PASS) stage[+id+]-bubble
|
||||||
|
@: $(MAKE); $(unstage)
|
||||||
|
@r=`${PWD_COMMAND}`; export r; \
|
||||||
|
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||||
|
$(MAKE) $(TARGET_FLAGS_TO_PASS) all-host all-target
|
||||||
[+ ENDIF cleanstrap-target +]
|
[+ ENDIF cleanstrap-target +]
|
||||||
@endif gcc-bootstrap
|
@endif gcc-bootstrap
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue