diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-04-18 09:32:24 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-04-18 09:32:24 +0000 |
commit | 1db8021cd376b636334cc671444d495b9af0028f (patch) | |
tree | 3e6f1a873d7b1bb9a611e86e553cc4b769b57022 | |
parent | 5010877e26baba416dc01c40eb57bc52b203e28c (diff) | |
download | gcc-1db8021cd376b636334cc671444d495b9af0028f.tar.gz |
2008-04-18 Paolo Bonzini <bonzini@gnu.org>
* Makefile.tpl (restrap): Call `make all' using double-colon rules.
* Makefile.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@134431 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.in | 4 | ||||
-rw-r--r-- | Makefile.tpl | 4 |
3 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index f97126205ed..123cd441386 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-04-18 Paolo Bonzini <bonzini@gnu.org> + + * Makefile.tpl (restrap): Call `make all' using double-colon rules. + * Makefile.in: Regenerate. + 2008-04-18 M R Swami Reddy <MR.Swami.Reddy@nsc.com> * configure.ac (cr16-*-*): Add case for cr16 target and include gdb diff --git a/Makefile.in b/Makefile.in index dc3b0c5569a..16b94cfeef5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -52690,10 +52690,10 @@ stage_current: @if test -f stage_last; then $(unstage); else $(MAKE) stage1-start; fi .PHONY: restrap -restrap: +restrap:: @: $(MAKE); $(stage) rm -rf stage1-$(TARGET_SUBDIR) stage2-* stageb2g0-* stage3-* stageb3g2-* stage4-* stageprofile-* stagefeedback-* - $(MAKE) $(RECURSE_FLAGS_TO_PASS) all +restrap:: all @endif gcc-bootstrap # -------------------------------------- diff --git a/Makefile.tpl b/Makefile.tpl index e9629e2da2c..ea2676fced6 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -1450,11 +1450,11 @@ stage_current: @if test -f stage_last; then $(unstage); else $(MAKE) stage1-start; fi .PHONY: restrap -restrap: +restrap:: @: $(MAKE); $(stage) rm -rf stage1-$(TARGET_SUBDIR) [+ FOR bootstrap-stage +][+ IF prev +]stage[+id+]-* [+ ENDIF prev +][+ ENDFOR bootstrap-stage +] - $(MAKE) $(RECURSE_FLAGS_TO_PASS) all +restrap:: all @endif gcc-bootstrap # -------------------------------------- |