Get closer to GhcCompilerWays=p working
[ghc-hetmet.git] / compiler / Makefile.ghcbin
1 # This Makefile builds the GHC binary for stage2.  In stage2, the GHC binary
2 # is built as a single Main module that links to the GHC package.  It
3 # is easier to do this with a separate Makefile, because we don't want most
4 # of the options normally dumped into SRC_HC_OPTS by the main GHC Makefile.
5 # In particular, we don't want the .hi files picked up along the home package
6 # search path when compiling Main, we need the compiler to find them in
7 # the GHC package.
8
9 TOP = ..
10 include $(TOP)/mk/boilerplate.mk
11
12 ifeq "$(stage)" "2"
13 HC=$(GHC_STAGE1)
14 endif
15
16 ifeq "$(stage)" "3"
17 HC=$(GHC_STAGE2)
18 endif
19
20 SRC_HC_OPTS += -package ghc
21 SRC_HC_OPTS += -Istage$(stage)
22 SRC_HC_OPTS += \
23   -cpp -fglasgow-exts -fno-generics -Rghc-timing \
24   -I. -IcodeGen -InativeGen -Iparser
25 SRC_HC_OPTS += $(GhcHcOpts) $(GhcStage$(stage)HcOpts)
26 ifeq "$(TargetOS_CPP)" "openbsd"
27 SRC_HC_OPTS += -optl-Xlinker -optl-E
28 endif
29
30 ifeq "$(GhcWithInterpreter)" "YES"
31 SRC_HC_OPTS += -DGHCI
32
33 # Should the debugger commands be enabled?
34 ifeq "$(GhciWithDebugger)" "YES"
35 SRC_HC_OPTS += -DDEBUGGER
36 endif
37
38 endif
39
40 ifeq "$(GhcThreaded)" "YES"
41 SRC_LD_OPTS += -threaded
42 endif
43 ifeq "$(GhcProfiled)" "YES"
44 SRC_LD_OPTS += -prof
45 endif
46
47 odir=stage$(stage)
48
49 HS_SRCS = main/Main.hs
50 HS_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(HS_SRCS))))
51 $(odir)/main/Main.o : libHSghc$(_way).a
52 SRC_HC_OPTS += -fforce-recomp
53 # can't rely on GHC's recompilation checking here, because it won't spot 
54 # changes in the ghc package.
55
56 include $(TOP)/mk/target.mk