X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2FMakefile;h=88b4dc082f52167620f3483ce27003595c6df9ac;hb=592766aac81d0889b56d4957382bbc6b7dad2d4b;hp=4bf9ac9a7d0a1c4cdcf00ffd4bc6c0b010bedb88;hpb=5b9164b417bd96a629adb0998796e2f9d2d5d22f;p=ghc-hetmet.git diff --git a/ghc/Makefile b/ghc/Makefile index 4bf9ac9..88b4dc0 100644 --- a/ghc/Makefile +++ b/ghc/Makefile @@ -13,11 +13,15 @@ else INSTALL_FLAGS = --enable-shell-wrappers endif -boot: - @: +boot:: boot.stage.$(stage) all:: build.stage.$(stage) +rebuild :: + -$(CABAL) clean --distpref dist-stage$(stage) + $(RM) -rf stage$(stage)-inplace + $(MAKE) boot all + stage1 :: $(MAKE) stage=1 @@ -30,19 +34,13 @@ stage3 :: clean distclean:: -$(CABAL) clean --distpref dist-stage1 -$(CABAL) clean --distpref dist-stage2 + -$(CABAL) clean --distpref dist-stage3 $(RM) -rf stage1-inplace $(RM) -rf stage2-inplace + $(RM) -rf stage3-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,25 +71,38 @@ CONFIGURE_FLAGS_STAGE3 += $(USE_STAGE2_CONFIGURE_FLAGS) # It works because installPackage doesn't actually use ghc-pkg, as there's # no library to register -build.stage.%: - $(CABAL) configure --distpref dist-stage$* \ - $(SET_DATA_SUBDIR) \ +boot.stage.%: + $(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' \ + '$(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)' '$(libdir)' \ + '$(docdir)' '$(htmldir)' '$(haddockdir)' \ + --distpref dist-stage2 \ $(INSTALL_FLAGS) # XXX fix: