diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-19 03:42:14 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-19 03:42:14 +0000 |
commit | 53647f74625e16123e3ce2eccba7189c43626780 (patch) | |
tree | fe34efbf3225a59bdb967288a019a47a71fa98d2 /Makefile.in | |
parent | 292c4e96341a56d1990c1399eabce5470c0629a1 (diff) | |
download | gcc-53647f74625e16123e3ce2eccba7189c43626780.tar.gz |
* Makefile.in (bootstrap2, bootstrap3): New targets.
(all-bootstrap): Remove outdated and confusing target.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@15559 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/Makefile.in b/Makefile.in index 5ee567dc874..dc0fb1a0bd9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1273,17 +1273,6 @@ all-gcc: true; \ fi -.PHONY: all-bootstrap -all-bootstrap: - @if [ -f ./gcc/Makefile ] ; then \ - r=`pwd`; export r; \ - s=`cd $(srcdir); pwd`; export s; \ - $(SET_LIB_PATH) \ - (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) bootstrap); \ - else \ - true; \ - fi - # Building GCC uses some tools for rebuilding "source" files # like texinfo, bison/byacc, etc. So we must depend on those. # @@ -1294,13 +1283,13 @@ all-bootstrap: # In theory, on an SMP all those dependencies can be resolved # in parallel. # -.PHONY: bootstrap -bootstrap: all-texinfo all-bison all-byacc all-binutils all-gas all-ld +.PHONY: bootstrap bootstrap2 bootstrap3 +bootstrap bootstrap2 bootstrap3: 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 with -O2 -g"; \ - cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) BOOT_CFLAGS="-O2 -g" bootstrap + cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) BOOT_CFLAGS="-O2 -g" $@ @r=`pwd`; export r; \ s=`cd $(srcdir); pwd`; export s; \ $(SET_LIB_PATH) \ @@ -1378,7 +1367,6 @@ all-gash: all-tcl all-gawk: ALL_GCC = all-gcc all-gcc: all-bison all-byacc all-binutils all-gas all-ld -all-bootstrap: all-libiberty all-bison all-byacc all-binutils all-gas all-ld GDB_TK = all-tk all-tcl all-itcl all-tix all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-bison all-byacc all-sim $(gdbnlmrequirements) $(GDB_TK) all-gnuserv: |