summaryrefslogtreecommitdiff
path: root/compiler/Makefile
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2010-05-25 08:53:01 +0000
committerSimon Marlow <marlowsd@gmail.com>2010-05-25 08:53:01 +0000
commit6c016f3803fec507f6a509a4929fc2344ee66fd8 (patch)
treea56f5a569038fddc0f125a367025a3544ee84287 /compiler/Makefile
parent1ea69bc6f349729ca858435e559b31b012f0d69a (diff)
downloadhaskell-6c016f3803fec507f6a509a4929fc2344ee66fd8.tar.gz
If you say 'make' or 'make stage=2' here, pretend we're in the ghc dir
Diffstat (limited to 'compiler/Makefile')
-rw-r--r--compiler/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/compiler/Makefile b/compiler/Makefile
index cde254ae78..f2c31e8067 100644
--- a/compiler/Makefile
+++ b/compiler/Makefile
@@ -10,11 +10,19 @@
#
# -----------------------------------------------------------------------------
+# If the user says 'make' or 'make stage=2' here, we behave as if they were
+# in the ghc directory instead, so that the executable GHC gets built.
+.PHONY: default_to_ghc all_ghc
+default_to_ghc : all_ghc
+
dir = compiler
TOP = ..
SPEC_TARGETS = 1 2 3
include $(TOP)/mk/sub-makefile.mk
+all_ghc :
+ +$(TOPMAKE) all_ghc $(EXTRA_MAKE_OPTS)
+
FAST_MAKE_OPTS += compiler_stage1_NO_BUILD_DEPS=YES compiler_stage2_NO_BUILD_DEPS=YES compiler_stage3_NO_BUILD_DEPS=YES
.PHONY: 1 2 3