Slight refactoring
[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 EXCLUDED_C_SRCS += ghc-inplace.c
21
22 SRC_HC_OPTS += -Wall
23 SRC_HC_OPTS += -package ghc
24 SRC_HC_OPTS += -Istage$(stage)
25 SRC_HC_OPTS += \
26   -cpp -fglasgow-exts -XNoGenerics -Rghc-timing \
27   -I. -IcodeGen -InativeGen -Iparser
28 SRC_HC_OPTS += $(GhcHcOpts) $(GhcStage$(stage)HcOpts)
29 ifeq "$(TargetOS_CPP)" "openbsd"
30 SRC_HC_OPTS += -optl-Xlinker -optl-E
31 endif
32
33 ifeq "$(GhcWithInterpreter)" "YES"
34 SRC_HC_OPTS += -DGHCI
35
36 # Should the debugger commands be enabled?
37 ifeq "$(GhciWithDebugger)" "YES"
38 SRC_HC_OPTS += -DDEBUGGER
39 endif
40
41 endif
42
43 ifeq "$(GhcThreaded)" "YES"
44 SRC_HC_OPTS += -threaded
45 endif
46 ifeq "$(GhcProfiled)" "YES"
47 SRC_HC_OPTS += -prof
48 endif
49 ifeq "$(GhcDebugged)" "YES"
50 SRC_LD_OPTS += -debug
51 endif
52
53 odir=stage$(stage)
54
55 HS_SRCS = main/Main.hs
56 HS_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(HS_SRCS))))
57 $(odir)/main/Main.o : libHSghc$(_way).a
58
59 WAYS=$(GhcCompilerWays)
60
61 include $(TOP)/mk/target.mk