Define CABAL in mk/cabal-flags.mk, rather than everywhere we use it
[ghc-hetmet.git] / mk / cabal-flags.mk
1
2 nothing=
3 space=$(nothing) $(nothing)
4
5 LIBRARIES_ABS = $(FPTOOLS_TOP_ABS)/libraries
6 CABAL = $(LIBRARIES_ABS)/cabal-bin $(GHC) $(LIBRARIES_ABS)/bootstrapping.conf
7
8 # We rely on all the CONFIGURE_ARGS being quoted with '...', and there
9 # being no 's inside the values.
10 FLAGGED_CONFIGURE_ARGS = $(subst $(space)',\
11                                  $(space)--configure-option=',\
12                                  $(space)$(CONFIGURE_ARGS))
13
14 COMMON_CONFIGURE_FLAGS = \
15     --libsubdir='$$pkgid' \
16     --with-ld=$(LD) \
17     $(addprefix --hsc2hs-option=,$(SRC_HSC2HS_OPTS))
18
19 ifneq "$(HSCOLOUR)" ""
20 COMMON_CONFIGURE_FLAGS += --with-hscolour=$(HSCOLOUR)
21 endif
22
23 ifneq "$(ALEX)" ""
24 COMMON_CONFIGURE_FLAGS += --with-alex=$(ALEX)
25 endif
26
27 ifneq "$(HADDOCK)" ""
28 COMMON_CONFIGURE_FLAGS += --with-haddock=$(HADDOCK)
29 endif
30
31 ifneq "$(HAPPY)" ""
32 COMMON_CONFIGURE_FLAGS += --with-happy=$(HAPPY)
33 endif
34
35 COMMON_CONFIGURE_FLAGS += $(FLAGGED_CONFIGURE_ARGS) \
36                           --configure-option=--with-cc=$(CC)
37
38 # We put non-existant paths in when configuring things that we plan to
39 # install, as we require that builds don't depend on these paths when
40 # making bindists.
41 INSTALL_CONFIGURE_FLAGS = \
42     --prefix=$(NONEXISTENT) \
43     --bindir=$(NONEXISTENT) \
44     --libdir=$(NONEXISTENT) \
45     --libexecdir=$(NONEXISTENT) \
46     --datadir=$(NONEXISTENT) \
47     --docdir=$(NONEXISTENT) \
48     --haddockdir=$(NONEXISTENT) \
49     --htmldir=$(NONEXISTENT) \
50     --with-compiler=$(FPTOOLS_TOP_ABS)/compiler/stage1/ghc-inplace \
51     --with-hc-pkg=$(FPTOOLS_TOP_ABS)/utils/ghc-pkg/ghc-pkg-inplace \
52     --with-hsc2hs=$(HSC2HS_INPLACE) \
53     $(COMMON_CONFIGURE_FLAGS)
54
55 INPLACE_CONFIGURE_FLAGS = \
56     --prefix=`$(TOP)/utils/pwd/pwd forwardslash`/install-inplace \
57     --with-compiler=$(GHC) \
58     --with-hc-pkg=$(GHC_PKG) \
59         --package-db $(FPTOOLS_TOP_ABS)/libraries/bootstrapping.conf \
60     $(COMMON_CONFIGURE_FLAGS)
61
62 # XXX
63 #    --bindir='$$prefix/bin' \
64 #    --libdir='$$prefix/lib' \
65 #    --libexecdir='$$prefix/libexec' \
66 #    --datadir='$$prefix/data' \
67 #    --docdir='$$prefix/doc' \
68 #    --haddockdir='$$prefix/haddock' \
69 #    --htmldir='$$prefix/html' \
70
71 BUILD_FLAGS = $(addprefix --ghc-option=,$(SRC_HC_OPTS))
72