diff options
author | Phil Edwards <pme@gcc.gnu.org> | 2003-04-17 21:04:05 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2003-04-17 21:04:05 +0000 |
commit | 1ca4c6e1e8914fa27d1b869cd60d2ed40501e097 (patch) | |
tree | 51e21c14c211a7ae1d51f06e653d1501c2d0e500 | |
parent | 7ed0620a31175be1eb5278c34d06e870d58bf802 (diff) | |
download | gcc-1ca4c6e1e8914fa27d1b869cd60d2ed40501e097.zip gcc-1ca4c6e1e8914fa27d1b869cd60d2ed40501e097.tar.gz gcc-1ca4c6e1e8914fa27d1b869cd60d2ed40501e097.tar.bz2 |
Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the previous bootstrap targets...
2003-04-17 Phil Edwards <pme@gcc.gnu.org>
* Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the
previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
and restrap.
* Makefile.in: Regenerate.
From-SVN: r65752
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Makefile.in | 5 | ||||
-rw-r--r-- | Makefile.tpl | 5 |
3 files changed, 13 insertions, 4 deletions
@@ -1,3 +1,10 @@ +2003-04-17 Phil Edwards <pme@gcc.gnu.org> + + * Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the + previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap, + and restrap. + * Makefile.in: Regenerate. + 2003-04-16 Richard Earnshaw <rearnsha@arm.com> * configure.in (arm-*-netbsdelf*): Enable building java libraries. diff --git a/Makefile.in b/Makefile.in index f70250d..615e3d3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -7264,8 +7264,9 @@ all-gcc: configure-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 bubblestrap quickstrap cleanstrap restrap -bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean bubblestrap quickstrap cleanstrap restrap: all-bootstrap configure-gcc +GCC_STRAP_TARGETS = bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean bubblestrap quickstrap cleanstrap restrap +.PHONY: $(GCC_STRAP_TARGETS) +$(GCC_STRAP_TARGETS): all-bootstrap configure-gcc @r=`${PWD}`; export r; \ s=`cd $(srcdir); ${PWD}`; export s; \ $(SET_LIB_PATH) \ diff --git a/Makefile.tpl b/Makefile.tpl index 72e2498..922b0e5 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -1189,8 +1189,9 @@ all-gcc: configure-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 bubblestrap quickstrap cleanstrap restrap -bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean bubblestrap quickstrap cleanstrap restrap: all-bootstrap configure-gcc +GCC_STRAP_TARGETS = bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean bubblestrap quickstrap cleanstrap restrap +.PHONY: $(GCC_STRAP_TARGETS) +$(GCC_STRAP_TARGETS): all-bootstrap configure-gcc @r=`${PWD}`; export r; \ s=`cd $(srcdir); ${PWD}`; export s; \ $(SET_LIB_PATH) \ |