diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-19 05:23:00 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-19 05:23:00 +0000 |
commit | c6d9586e728ca34a3b16a334058c6bd087371329 (patch) | |
tree | 7ea9a7dd4be07e100e71de45d9dd88b930e03270 /Makefile.in | |
parent | 863735924658871cccee0194698afce1ce77846b (diff) | |
download | gcc-c6d9586e728ca34a3b16a334058c6bd087371329.tar.gz |
* Makefile.in (bootstrap2, bootstrap3): New targets.
(all-bootstrap): Remove outdated and confusing target.
(bootstrap, bootstrap2, bootstrap3): Don't pass BOOT_CFLAGS down.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@15563 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index dc0fb1a0bd9..bdb09d715af 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1288,13 +1288,13 @@ bootstrap bootstrap2 bootstrap3: all-texinfo all-bison all-byacc all-binutils al @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" $@ + 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) BOOT_CFLAGS="-O2 -g" compare + cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) compare @echo "Building runtime libraries"; \ $(MAKE) all |