diff options
author | Ian Lynagh <igloo@earth.li> | 2008-06-22 13:46:13 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-06-22 13:46:13 +0000 |
commit | f2e53b6f1045941243d2d5e76e9b01b6e769ddd9 (patch) | |
tree | 72cb43102db40784bd9f65697fea2bc0dbeeb0f8 /Makefile | |
parent | 79f8f843c0f7a9d0bf1b542566f8c1506691c31a (diff) | |
download | haskell-f2e53b6f1045941243d2d5e76e9b01b6e769ddd9.tar.gz |
Don't rebuild things with the stage2 compiler
It leads to annoying rebuilding when working in a built tree.
We'll handle this differently for 6.10.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -98,7 +98,6 @@ endif endif stage1 : $(GCC_LIB_DEP) check-packages - $(MAKE) -C utils mostlyclean $(MAKE) -C utils/mkdependC boot @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \ for i in $(SUBDIRS_BUILD); do \ @@ -128,14 +127,8 @@ stage1 : $(GCC_LIB_DEP) check-packages # compiler of all utils that get installed and of all extra support binaries # includes in binary dists. stage2 : check-packages - $(MAKE) -C utils mostlyclean - $(MAKE) -C utils stage=2 $(MAKE) -C compiler boot stage=2 $(MAKE) -C compiler stage=2 - $(RM) -f libraries/ifBuildable/ifBuildable - $(MAKE) -C libraries stage=2 ifBuildable/ifBuildable - $(RM) -f libraries/installPackage/installPackage - $(MAKE) -C libraries stage=2 installPackage/installPackage stage3 : check-packages |