Adding pushing of hpc translation status through hi files.
[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 ifneq "$(findstring thr, $(GhcRTSWays))" ""
41 ifneq "$(GhcNotThreaded)" "YES"
42 SRC_HC_OPTS += -threaded
43 endif
44 endif
45
46 odir=stage$(stage)
47
48 HS_SRCS = main/Main.hs
49 HS_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(HS_SRCS))))
50 $(odir)/main/Main.o : libHSghc$(_way).a
51 SRC_HC_OPTS += -fforce-recomp
52 # can't rely on GHC's recompilation checking here, because it won't spot 
53 # changes in the ghc package.
54
55 include $(TOP)/mk/target.mk