diff options
author | Aaron Jackson <jackson@negril.msrce.howard.edu> | 1997-09-29 06:37:11 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-09-29 00:37:11 -0600 |
commit | b1e3ddfd2914dda056da9533f55ffeb291975b10 (patch) | |
tree | 84576198ea7ea61999328571beccbf475c738bb8 /Makefile.in | |
parent | c02f035f409537d2b7e9ed626a3c424026eb8602 (diff) | |
download | gcc-b1e3ddfd2914dda056da9533f55ffeb291975b10.tar.gz |
Makefile.in (bootstrap-lean): New target.
* Makefile.in (bootstrap-lean): New target.
* gcc/Makefile.in (bootstrap-lean, compare-lean): New targets.
From-SVN: r15786
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 063293453d2..b7f9c27be79 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1298,6 +1298,21 @@ bootstrap bootstrap2 bootstrap3: all-texinfo all-bison all-byacc all-binutils al @echo "Building runtime libraries"; \ $(MAKE) all +.PHONY: bootstrap-lean +bootstrap-lean: all-texinfo all-bison all-byacc all-binutils all-gas all-ld + @r=`pwd`; export r; \ + s=`cd $(srcdir); pwd`; export s; \ + $(SET_LIB_PATH) \ + echo "Bootstrapping the compiler"; \ + cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) $@ + @r=`pwd`; export r; \ + s=`cd $(srcdir); pwd`; export s; \ + $(SET_LIB_PATH) \ + echo "Comparing stage2 and stage3 of the compiler"; \ + cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) compare-lean + @echo "Building runtime libraries"; \ + $(MAKE) all + .PHONY: cross cross: all-texinfo all-bison all-byacc all-binutils all-gas all-ld @r=`pwd`; export r; \ |