diff options
author | Phil Edwards <pme@gcc.gnu.org> | 2002-10-25 22:49:58 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2002-10-25 22:49:58 +0000 |
commit | e004b81f6ed37e05d3cf37dd9aa3c961bce0b6a9 (patch) | |
tree | a62b89e4dd1a88346b5e1941fcd79e806a37b182 | |
parent | 794186cab2521fa10e006d55acca937082164666 (diff) | |
download | gcc-e004b81f6ed37e05d3cf37dd9aa3c961bce0b6a9.zip gcc-e004b81f6ed37e05d3cf37dd9aa3c961bce0b6a9.tar.gz gcc-e004b81f6ed37e05d3cf37dd9aa3c961bce0b6a9.tar.bz2 |
Makefile.tpl (bootstrap): Add bubblestrap, quickstrap, cleanstrap, and restrap targets to this rule.
2002-10-25 Phil Edwards <pme@gcc.gnu.org>
* Makefile.tpl (bootstrap): Add bubblestrap, quickstrap, cleanstrap,
and restrap targets to this rule.
* Makefile.in: Regenerate.
From-SVN: r58545
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.in | 4 | ||||
-rw-r--r-- | Makefile.tpl | 4 |
3 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2002-10-25 Phil Edwards <pme@gcc.gnu.org> + + * Makefile.tpl (bootstrap): Add bubblestrap, quickstrap, cleanstrap, + and restrap targets to this rule. + * Makefile.in: Regenerate. + 2002-10-25 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> * MAINTAINERS: Add Wolfgang Bangerth and Volker Reichelt under diff --git a/Makefile.in b/Makefile.in index ce4bffa..34d019f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1527,8 +1527,8 @@ all-gcc: # In theory, on an SMP all those dependencies can be resolved # in parallel. # -.PHONY: bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean -bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean: all-bootstrap +.PHONY: bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean bubblestrap quickstrap cleanstrap restrap +bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean bubblestrap quickstrap cleanstrap restrap: all-bootstrap @r=`${PWD}`; export r; \ s=`cd $(srcdir); ${PWD}`; export s; \ $(SET_LIB_PATH) \ diff --git a/Makefile.tpl b/Makefile.tpl index 5ef7d55..58d50ce 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -1242,8 +1242,8 @@ all-gcc: # In theory, on an SMP all those dependencies can be resolved # in parallel. # -.PHONY: bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean -bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean: all-bootstrap +.PHONY: bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean bubblestrap quickstrap cleanstrap restrap +bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean bubblestrap quickstrap cleanstrap restrap: all-bootstrap @r=`${PWD}`; export r; \ s=`cd $(srcdir); ${PWD}`; export s; \ $(SET_LIB_PATH) \ |