Generate ghc.cabal and ghc-bin.cabal with configure
[ghc-hetmet.git] / ghc / Makefile
1
2 TOP=..
3 include $(TOP)/mk/boilerplate.mk
4 include $(TOP)/mk/cabal-flags.mk
5
6 ifeq "$(stage)" ""
7 stage=1
8 endif
9
10 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
11 INSTALL_FLAGS =
12 else
13 INSTALL_FLAGS = --enable-shell-wrappers
14 endif
15
16 # Don't strip the inplace versions, we might need to debug them
17 INPLACE_INSTALL_FLAGS += --disable-executable-stripping
18
19 boot:: boot.stage.$(stage)
20
21 all:: build.stage.$(stage)
22
23 rebuild ::
24         -$(CABAL) clean --distpref dist-stage$(stage)
25         $(RM) -rf stage$(stage)-inplace
26         $(MAKE) boot all
27
28 stage1 ::
29         $(MAKE) stage=1
30
31 stage2 ::
32         $(MAKE) stage=2
33
34 stage3 ::
35         $(MAKE) stage=3
36
37
38 ifeq "$(CLEAN_ALL_STAGES)" "YES"
39 clean distclean:: clean.stage.1 clean.stage.2 clean.stage.3
40 else
41 clean distclean:: clean.stage.$(stage)
42 endif
43
44 ifeq "$(CLEAN_ALL_STAGES)" "YES"
45 distclean::
46         $(RM) -f ghc-bin.cabal
47 endif
48
49 clean.stage.%:
50         -$(CABAL) clean --distpref dist-stage$*
51         $(RM) -rf stage$*-inplace
52
53 CONFIGURE_FLAGS_STAGE1 += --flags=-ghci
54
55 ifeq "$(GhcWithInterpreter)" "YES"
56 CONFIGURE_FLAGS_STAGE2PLUS += --flags=ghci
57 else
58 CONFIGURE_FLAGS_STAGE2PLUS += --flags=-ghci
59 endif
60
61 ifeq "$(GhcProfiled)" "YES"
62 CONFIGURE_FLAGS_STAGE2PLUS += --enable-executable-profiling
63 endif
64 ifeq "$(GhcDebugged)" "YES"
65 CONFIGURE_FLAGS_STAGE2PLUS += --ghc-option=-debug
66 endif
67 ifeq "$(GhcThreaded)" "YES"
68 # Use threaded RTS with GHCi, so threads don't get blocked at the prompt.
69 CONFIGURE_FLAGS_STAGE2PLUS += --ghc-option=-threaded
70 endif
71
72 ifeq "$(BuildSharedLibs)" "YES"
73 CONFIGURE_FLAGS_STAGE2PLUS += --ghc-option=-dynamic
74 endif
75
76 CONFIGURE_FLAGS_STAGE2 = $(CONFIGURE_FLAGS_STAGE2PLUS)
77 CONFIGURE_FLAGS_STAGE3 = $(CONFIGURE_FLAGS_STAGE2PLUS)
78
79 CONFIGURE_FLAGS_STAGE1 += $(USE_BOOT_CONFIGURE_FLAGS)
80 CONFIGURE_FLAGS_STAGE2 += $(USE_STAGE1_CONFIGURE_FLAGS)
81 CONFIGURE_FLAGS_STAGE3 += $(USE_STAGE2_CONFIGURE_FLAGS)
82
83 CONFIGURE_FLAGS_STAGE1 += $(foreach flag, $(GhcStage1HcOpts), --ghc-option=$(flag))
84 CONFIGURE_FLAGS_STAGE2 += $(foreach flag, $(GhcStage2HcOpts), --ghc-option=$(flag))
85 CONFIGURE_FLAGS_STAGE3 += $(foreach flag, $(GhcStage3HcOpts), --ghc-option=$(flag))
86
87 # Allow EXTRA_HC_OPTS to be used from the command line to add options 
88 # when building (e.g. -v)
89 BUILD_FLAGS=$(patsubst %, --ghc-option=%, $(EXTRA_HC_OPTS))
90
91 # XXX In stage2+ we should really use the inplace ghc-pkg
92 # It works because installPackage doesn't actually use ghc-pkg, as there's
93 # no library to register
94
95 ifeq "$(stage)" "1"
96 ifeq "$(ghc_ge_609)" "NO"
97 # GHC 6.9+ can handle cross-package recompilation checking, but
98 # we don't rely on the bootstrapping compiler being able to do this.
99 TOUCH_MAIN = $(RM) dist-stage1/build/ghc/ghc-tmp/Main.o
100 endif
101 endif
102
103 dist-stage1 dist-stage2 dist-stage3: dist-stage%: boot.stage.%
104
105 boot.stage.%:
106         $(CABAL) configure --distpref dist-stage$*         \
107                            $(INSTALL_DIRS_CONFIGURE_FLAGS) \
108                            $(CONFIGURE_FLAGS_STAGE$*)      \
109                            $(COMMON_CONFIGURE_FLAGS)       \
110                            --libsubdir=.                   \
111                            --datadir='$$libdir'            \
112                            --datasubdir=.
113
114 build.stage.%: dist-stage%
115         $(TOUCH_MAIN)
116         $(CABAL) build     --distpref dist-stage$* $(BUILD_FLAGS)
117         $(INSTALL_PACKAGE) install '$(GHC_PKG_PROG)' 'XXX/package.conf' "" \
118                            $(FPTOOLS_TOP_ABS)/ghc/stage$*-inplace          \
119                            $(FPTOOLS_TOP_ABS)/ghc/stage$*-inplace          \
120                            '$$prefix'                                      \
121                            '$(INPLACE_DATA_DIR)'                           \
122                            '$$prefix/libexec'                              \
123                            '$$prefix/dynlib'                               \
124                            '$(INPLACE_DATA_DIR)'                           \
125                            '$$prefix/doc'                                  \
126                            '$$prefix/html'                                 \
127                            '$$prefix/haddock'                              \
128                            --distpref dist-stage$*                         \
129                            $(INPLACE_INSTALL_FLAGS)                        \
130                            $(INSTALL_FLAGS)
131
132 # XXX For now we always install the stage 2 compiler
133 install:
134         $(INSTALL_PACKAGE) install UNUSED UNUSED '$(DESTDIR)' '$(prefix)' \
135                            '$(prefix)' '$(bindir)' '$(libdir)'            \
136                        '$(libexecdir)' '$(dynlibdir)' '$(datadir)'    \
137                        '$(docdir)' '$(htmldir)' '$(haddockdir)'       \
138                            --distpref dist-stage2                         \
139                            $(INSTALL_FLAGS)
140
141 html:
142         @:
143
144 install-docs:
145         @:
146
147 include $(TOP)/mk/bindist.mk
148 EXE_DIST_DIR = dist-stage2
149