diff options
author | DJ Delorie <dj@redhat.com> | 2003-04-17 21:30:52 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2003-04-17 21:30:52 +0000 |
commit | 5b474aa89ab1bc0ebbd9572f556106f0014acfbb (patch) | |
tree | f0fc7e0d3e441e47966371ea32d02ee86d3109ae /Makefile.in | |
parent | 627bf7c1c73e713199b020c66973629ddcb8cc59 (diff) | |
download | binutils-gdb-5b474aa89ab1bc0ebbd9572f556106f0014acfbb.tar.gz |
* Makefile.tpl (GCC_STRAP_TARGETS): New variable containing all the
previous bootstrap targets, plus bubblestrap, quickstrap, cleanstrap,
and restrap.
* Makefile.in: Regenerate.
* configure.in (arm-*-netbsdelf*): Enable building java libraries.
* configure: Regenerated.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index f70250dd8d7..615e3d3f4ff 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) \ |