update submodules for GHC.HetMet.GArrow -> Control.GArrow renaming
[ghc-hetmet.git] / rules / package-config.mk
1 # -----------------------------------------------------------------------------
2 #
3 # (c) 2009 The University of Glasgow
4 #
5 # This file is part of the GHC build system.
6 #
7 # To understand how the build system works and how to modify it, see
8 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
9 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
10 #
11 # -----------------------------------------------------------------------------
12
13
14 define package-config # args: $1 = dir, $2 = distdir, $3 = GHC stage
15 $(call trace, package-config($1,$2,$3))
16 $(call profStart, package-config($1,$2,$3))
17
18 $1_$2_HC = $$(GHC_STAGE$3)
19 $1_$2_CC = $$(CC_STAGE$3)
20 $1_$2_AS = $$(AS_STAGE$3)
21 $1_$2_AR = $$(AR_STAGE$3)
22 $1_$2_AR_OPTS = $$(AR_OPTS_STAGE$3)
23 $1_$2_EXTRA_AR_ARGS = $$(EXTRA_AR_ARGS_STAGE$3)
24 $1_$2_ArSupportsAtFile = $$(ArSupportsAtFile_STAGE$3)
25
26 # configuration stuff that depends on which GHC we're building with
27 ifeq "$3" "0"
28 $1_$2_ghc_ge_613 = $$(ghc_ge_613)
29 $1_$2_HC_CONFIG = $$(GHC_STAGE0)
30 $1_$2_HC_CONFIG_DEP =
31 $1_$2_GHC_PKG = $$(GHC_PKG)
32 $1_$2_GHC_PKG_DEP = 
33 $1_$2_HC_MK_DEPEND = $$($1_$2_HC)
34 # We can't make rules depend on the bootstrapping compiler, as then
35 # on cygwin we get a dep on c:/ghc/..., and make gets confused by the :
36 $1_$2_HC_MK_DEPEND_DEP =
37 $1_$2_HC_DEP =
38 $1_$2_HC_PKGCONF = -package-conf $$(BOOTSTRAPPING_CONF)
39 $1_$2_GHC_PKG_OPTS = --package-conf=$$(BOOTSTRAPPING_CONF)
40 $1_$2_CONFIGURE_OPTS += --package-db=$$(TOP)/$$(BOOTSTRAPPING_CONF)
41 $1_$2_MORE_HC_OPTS += -no-user-package-conf
42 ifeq "$(ghc_ge_613)" "YES"
43 $1_$2_MORE_HC_OPTS += -rtsopts
44 endif
45 else
46 $1_$2_ghc_ge_613 = YES
47 $1_$2_HC_PKGCONF = 
48 $1_$2_HC_CONFIG = $$(TOP)/$$(GHC_STAGE1)
49 $1_$2_HC_CONFIG_DEP = $$(GHC_STAGE1)
50 $1_$2_GHC_PKG = $$(TOP)/$$(GHC_PKG_INPLACE)
51 $1_$2_GHC_PKG_DEP = $$(GHC_PKG_INPLACE)
52 $1_$2_GHC_PKG_OPTS =
53 # If stage is not 0 then we always use stage1 for making .depend, as later
54 # stages aren't available early enough
55 $1_$2_HC_MK_DEPEND = $$(GHC_STAGE1)
56 $1_$2_HC_MK_DEPEND_DEP = $$($1_$2_HC_MK_DEPEND)
57 $1_$2_HC_DEP = $$($1_$2_HC)
58 $1_$2_MORE_HC_OPTS += -no-user-package-conf
59 $1_$2_MORE_HC_OPTS += -rtsopts
60 endif
61
62 # Useful later
63 $1_$2_SLASH_MODS = $$(subst .,/,$$($1_$2_MODULES))
64
65 $(call profEnd, package-config($1,$2,$3))
66 endef