X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2FMakefile;h=4ee970cd656ff23d0992a029191e9bac9d1064be;hb=bb7ffa1642e2110e26e1243c42a8a24adafa985d;hp=312ab05bbe60c72cab496695b77db374e80245f5;hpb=48c3232a53eb5a0594991e4af602bf91364a2cc4;p=ghc-hetmet.git diff --git a/ghc/Makefile b/ghc/Makefile index 312ab05..4ee970c 100644 --- a/ghc/Makefile +++ b/ghc/Makefile @@ -32,16 +32,8 @@ clean distclean:: $(RM) -rf stage1-inplace $(RM) -rf stage2-inplace -# XXX Eugh, can we do this better? The problem is making extra-gcc-opts -# infdable on both Linux and Windows. I guess this will go away when we -# drop the mangler? -ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32" -SET_DATA_SUBDIR = --datasubdir=. -INPLACE_DATA_DIR = '$$prefix' -else -SET_DATA_SUBDIR = -INPLACE_DATA_DIR = '$$prefix/data' -endif +# XXX This should be defined somewhere more central +INPLACE_DATA_DIR = $(FPTOOLS_TOP_ABS)/inplace-datadir CONFIGURE_FLAGS_STAGE1 += --flags=-ghci @@ -73,33 +65,35 @@ CONFIGURE_FLAGS_STAGE3 += $(USE_STAGE2_CONFIGURE_FLAGS) # no library to register boot.stage.%: - $(CABAL) configure --distpref dist-stage$* \ - $(SET_DATA_SUBDIR) \ + $(CABAL) configure --distpref dist-stage$* \ $(INSTALL_DIRS_CONFIGURE_FLAGS) \ - $(CONFIGURE_FLAGS_STAGE$*) \ - $(COMMON_CONFIGURE_FLAGS) + $(CONFIGURE_FLAGS_STAGE$*) \ + $(COMMON_CONFIGURE_FLAGS) \ + --libsubdir=. \ + --datadir='$$libdir' \ + --datasubdir=. build.stage.%: $(CABAL) build --distpref dist-stage$* $(BUILD_FLAGS) $(INSTALL_PACKAGE) install '$(GHC_PKG_PROG)' 'XXX/package.conf' "" \ - $(FPTOOLS_TOP_ABS)/ghc/stage$*-inplace \ - $(FPTOOLS_TOP_ABS)/ghc/stage$*-inplace \ - '$$prefix/bin' \ - '$$prefix/lib' \ - '$$prefix/libexec' \ - '$$prefix/dynlib' \ - $(INPLACE_DATA_DIR) \ - '$$prefix/doc' \ - '$$prefix/html' \ - '$$prefix/haddock' \ - --distpref dist-stage$* \ + $(FPTOOLS_TOP_ABS)/ghc/stage$*-inplace \ + $(FPTOOLS_TOP_ABS)/ghc/stage$*-inplace \ + '$$prefix/bin' \ + '$(INPLACE_DATA_DIR)' \ + '$$prefix/libexec' \ + '$$prefix/dynlib' \ + '$(INPLACE_DATA_DIR)' \ + '$$prefix/doc' \ + '$$prefix/html' \ + '$$prefix/haddock' \ + --distpref dist-stage$* \ $(INSTALL_FLAGS) # XXX For now we always install the stage 2 compiler install: $(INSTALL_PACKAGE) install UNUSED UNUSED '$(DESTDIR)' '$(prefix)' \ '$(prefix)' '$(bindir)' '$(libdir)' \ - '$(libexecdir)' '$(dynlibdir)' '$(datadir)' \ + '$(libexecdir)' '$(dynlibdir)' '$(libdir)' \ '$(docdir)' '$(htmldir)' '$(haddockdir)' \ --distpref dist-stage2 \ $(INSTALL_FLAGS)