diff options
author | Alexandre Oliva <oliva@dcc.unicamp.br> | 1997-09-19 03:42:14 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-09-18 21:42:14 -0600 |
commit | 335d0ab20834ed257a4d7e15ceb9b966fdafa8d3 (patch) | |
tree | fe34efbf3225a59bdb967288a019a47a71fa98d2 | |
parent | c52c47b4cd9180fc109d0ccb1a05e0729cf301d5 (diff) | |
download | gcc-335d0ab20834ed257a4d7e15ceb9b966fdafa8d3.zip gcc-335d0ab20834ed257a4d7e15ceb9b966fdafa8d3.tar.gz gcc-335d0ab20834ed257a4d7e15ceb9b966fdafa8d3.tar.bz2 |
Makefile.in (bootstrap2, bootstrap3): New targets.
* Makefile.in (bootstrap2, bootstrap3): New targets.
(all-bootstrap): Remove outdated and confusing target.
Co-Authored-By: Jeffrey A Law <law@cygnus.com>
From-SVN: r15559
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.in | 18 |
2 files changed, 9 insertions, 15 deletions
@@ -1,3 +1,9 @@ +Thu Sep 18 21:43:23 1997 Alexandre Oliva <oliva@dcc.unicamp.br> + Jeff Law <law@cygnus.com> + + * Makefile.in (bootstrap2, bootstrap3): New targets. + (all-bootstrap): Remove outdated and confusing target. + 1997-09-15 02:37 Ulrich Drepper <drepper@cygnus.com> * config/mt-linux: Define CXXFLAGS to make sure -fvtable-thunks is diff --git a/Makefile.in b/Makefile.in index 5ee567d..dc0fb1a 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: |