diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-29 06:37:11 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-29 06:37:11 +0000 |
commit | 732395dea391f49fa043b9dfb7b03466df22e0f3 (patch) | |
tree | 84576198ea7ea61999328571beccbf475c738bb8 /Makefile.in | |
parent | 1e38bf49aca685c5d71c18f354e48dbf05d62215 (diff) | |
download | gcc-732395dea391f49fa043b9dfb7b03466df22e0f3.tar.gz |
* Makefile.in (bootstrap-lean): New target.
* gcc/Makefile.in (bootstrap-lean, compare-lean): New targets.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@15786 138bc75d-0d04-0410-961f-82ee72b054a4
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; \ |