diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-05-19 08:34:19 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-05-19 08:34:19 +0000 |
commit | 47f42dc1ee6a5f42133674d0a6684b077e25be6e (patch) | |
tree | 6df8abd8dd84a5f28a25934c3fa8e24c5fa8a5ec /compiler/Makefile | |
parent | cbc627e356049cb73206c7afeca57c410a69bfe4 (diff) | |
download | haskell-47f42dc1ee6a5f42133674d0a6684b077e25be6e.tar.gz |
make [123] omits phases 1,2, and 3
Diffstat (limited to 'compiler/Makefile')
-rw-r--r-- | compiler/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/Makefile b/compiler/Makefile index f5a74f4aba..aaecaf14b1 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -18,11 +18,11 @@ include $(TOP)/mk/sub-makefile.mk .PHONY: 1 2 3 1: - +$(TOPMAKE) stage=1 all_ghc_stage1 compiler_stage1_NO_BUILD_DEPS=YES + +$(TOPMAKE) stage=1 all_ghc_stage1 compiler_stage1_NO_BUILD_DEPS=YES OMIT_PHASE_1=YES OMIT_PHASE_2=YES OMIT_PHASE_3=YES 2: - +$(TOPMAKE) stage=2 all_ghc_stage2 compiler_stage2_NO_BUILD_DEPS=YES + +$(TOPMAKE) stage=2 all_ghc_stage2 compiler_stage2_NO_BUILD_DEPS=YES OMIT_PHASE_1=YES OMIT_PHASE_2=YES OMIT_PHASE_3=YES 3: - +$(TOPMAKE) stage=3 all_ghc_stage3 compiler_stage3_NO_BUILD_DEPS=YES + +$(TOPMAKE) stage=3 all_ghc_stage3 compiler_stage3_NO_BUILD_DEPS=YES OMIT_PHASE_1=YES OMIT_PHASE_2=YES OMIT_PHASE_3=YES |