diff options
author | kcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-09 11:44:03 +0000 |
---|---|---|
committer | kcook <kcook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-09 11:44:03 +0000 |
commit | e194dbc30f8744699f7a6cacfb90363c43e6cfdb (patch) | |
tree | 5ce5d47463a4e7d4ee68e322e65c08a08d020226 /gcc/Makefile.in | |
parent | b9ebceee7b420876614d43d6204d1382b9e74f11 (diff) | |
download | gcc-e194dbc30f8744699f7a6cacfb90363c43e6cfdb.tar.gz |
Revert change from yesterday due to parallel make issues.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71235 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 732e8f8122e..44add3f7620 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -223,7 +223,6 @@ STAMP = echo timestamp > # Make sure the $(MAKE) variable is defined. @SET_MAKE@ -REMAKE=$(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" # -------- # UNSORTED @@ -3469,22 +3468,22 @@ unstage1 unstage2 unstage3 unstage4 unstageprofile unstagefeedback: echo $${stage}_build > stage_last restage1: unstage1 - $(REMAKE) stage1_build + $(MAKE) stage1_build restage2: unstage2 - $(REMAKE) stage2_build + $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stage2_build restage3: unstage3 - $(REMAKE) stage3_build + $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stage3_build restage4: unstage4 - $(REMAKE) stage4_build + $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stage4_build restageprofile: unstageprofile - $(REMAKE) stageprofile_build + $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stageprofile_build restagefeedback: unstagefeedback - $(REMAKE) stagefeedback_build + $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stagefeedback_build # Bubble up a bugfix through all the stages. Primarily useful for fixing # bugs that cause the compiler to crash while building stage 2. @@ -3492,31 +3491,31 @@ bubblestrap: if test -f stage_last; then \ LAST=`sed -e 's/_build//' < stage_last`; \ if test "$$LAST" != "stage1"; then \ - $(REMAKE) $$LAST; \ + $(MAKE) $$LAST; \ $(STAMP) $${LAST}_copy; \ fi; \ fi if test -f stage1_copy; then $(MAKE) unstage1; fi - $(REMAKE) stage1_copy + $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stage1_copy if test -f stage2_copy; then $(MAKE) unstage2; fi - $(REMAKE) stage2_copy + $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stage2_copy if test -f stage3_copy; then $(MAKE) unstage3; fi - $(REMAKE) stage3_build + $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stage3_build if test -f stage4_copy; then \ - $(REMAKE) stage3_copy; $(MAKE) unstage4; \ - $(REMAKE) stage4_build || exit 1; \ + $(MAKE) stage3_copy; $(MAKE) unstage4; \ + $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" stage4_build || exit 1; \ fi quickstrap: if test -f stage_last ; then \ - LAST=`cat stage_last`; rm $$LAST; $(REMAKE) $$LAST; \ + LAST=`cat stage_last`; rm $$LAST; $(MAKE) BOOT_CFLAGS="$(BOOT_CFLAGS)" LANGUAGES="$(LANGUAGES)" $$LAST; \ else \ - $(REMAKE) stage1_build; \ + $(MAKE) stage1_build; \ fi cleanstrap: -$(MAKE) clean - $(REMAKE) bootstrap + $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" bootstrap unstrap: -rm -rf stage[234]* @@ -3527,7 +3526,7 @@ unstrap: # not from scratch. restrap: $(MAKE) unstrap - $(REMAKE) bootstrap + $(MAKE) LANGUAGES="$(LANGUAGES)" BOOT_CFLAGS="$(BOOT_CFLAGS)" bootstrap # Compare the object files in the current directory with those in the # stage2 directory. |