X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=mk%2Fconfig.mk.in;h=e8429e96523fe7b6b3209a115761f89305548c3e;hb=d1ed49a63afc0fdee56d3bbfc81af5e9a0bf2797;hp=b1b54f31ee47efdbe33090b435c8b5c806c058bb;hpb=cd759f053d3f54fe62e1b5f3f74ec5c8f4c10893;p=ghc-hetmet.git diff --git a/mk/config.mk.in b/mk/config.mk.in index b1b54f3..e8429e9 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -185,6 +185,12 @@ BootingFromUnregisterisedHc = @BootingFromUnregisterisedHc@ # XMLDocWays= +# Should we build haddock docs? +HADDOCK_DOCS = YES + +# Should we build latex docs? +LATEX_DOCS = NO + # Mac OS X deployment target (to cross-compile for older OS versions) # MACOSX_DEPLOYMENT_VERSION = @MACOSX_DEPLOYMENT_VERSION@ @@ -241,6 +247,7 @@ GhcStage3HcOpts=-O2 GhcProfiled=NO GhcDebugged=NO +GhcLibProfiled=$(if $(filter p,$(GhcLibWays)),YES,NO) # Build shared and/or static libs? BuildSharedLibs=@BuildSharedLibs@ @@ -391,7 +398,7 @@ GhcRTSWays += debug endif ifeq "$(BuildSharedLibs)" "YES" -GhcRTSWays += debug_dyn thr_dyn thr_debug_dyn +GhcRTSWays += dyn debug_dyn thr_dyn thr_debug_dyn endif # Want the threaded versions unless we're unregisterised @@ -531,7 +538,7 @@ ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32" DEFAULT_TMPDIR = /C/TEMP endif -# FPTOOLS_TOP: the top of the fptools hierarchy, absolute path. +# FPTOOLS_TOP_ABS: the top of the fptools hierarchy, absolute path. # On Windows this is a c:/foo/bar style path. FPTOOLS_TOP_ABS = @hardtop@ @@ -610,9 +617,14 @@ else # Unix: override libdir and datadir to put ghc-specific stuff in # a subdirectory with the version number included. +# +# datadir is set to libdir here as GHC needs package.conf and unlit +# to be in the same place (and things like ghc-pkg need to agree on +# where package.conf is, so we just set it globally). +# datarootdir := $(datadir0) -datadir := $(datadir0)/ghc-$(ProjectVersion) libdir := $(libdir0)/ghc-$(ProjectVersion) +datadir := $(libdir) # New autoconf (>= 2.60?) make a configure with --docdir=DIR etc flags. # However, in order to support older autoconf's we don't use them. @@ -910,6 +922,7 @@ ifneq "$(findstring YES, $(UseStage1) $(BootingFromHc))" "" # some variables appropriately: HC =$(GHC_STAGE1) MKDEPENDHS =$(GHC_STAGE1) +USE_NEW_MKDEPEND_FLAGS = YES GhcVersion = @ProjectVersion@ GhcPatchLevel = @ProjectPatchLevel@ # oops, these are wrong: @@ -922,8 +935,14 @@ ghc_ge_609 = YES else # not UseStage1 or BootingFromHc +# Some useful GHC version predicates: +ghc_ge_605 = @ghc_ge_605@ +ghc_ge_607 = @ghc_ge_607@ +ghc_ge_609 = @ghc_ge_609@ + HC = @WithHc@ MKDEPENDHS = $(GHC) +USE_NEW_MKDEPEND_FLAGS = $(ghc_ge_609) GhcVersion = @GhcVersion@ GhcPatchLevel = @GhcPatchLevel@ GhcMajVersion = @GhcMajVersion@ @@ -937,13 +956,8 @@ GhcMinVersion = @GhcMinVersion@ # when $(HC) does *not* point to one of the GHC binaries built in # the local tree. # -BOOTSTRAPPING_PACKAGE_CONF_HC_OPTS =$(if $(findstring $(GHC_COMPILER_DIR_ABS), $(HC)),,-package-conf $(BOOTSTRAPPING_CONF)) -BOOTSTRAPPING_PACKAGE_CONF_MKDEPENDHS_OPTS =$(if $(findstring $(GHC_COMPILER_DIR_ABS), $(MKDEPENDHS)),,-package-conf $(BOOTSTRAPPING_CONF)) - -# Some useful GHC version predicates: -ghc_ge_605 = @ghc_ge_605@ -ghc_ge_607 = @ghc_ge_607@ -ghc_ge_609 = @ghc_ge_609@ +BOOTSTRAPPING_PACKAGE_CONF_HC_OPTS =$(if $(findstring inplace, $(HC)),,-package-conf $(BOOTSTRAPPING_CONF)) +BOOTSTRAPPING_PACKAGE_CONF_MKDEPENDHS_OPTS =$(if $(findstring inplace, $(MKDEPENDHS)),,-package-conf $(BOOTSTRAPPING_CONF)) endif # Canonicalised ghc version number, used for easy (integer) version @@ -1180,11 +1194,6 @@ ALEX_VERSION = @AlexVersion@ GHC_ALEX_OPTS = -g # -# Haddock -# -HADDOCK = @HaddockCmd@ - -# # Options for compiling in different `ways'. # # To configure up your own way, have a look at some of the standard ways