X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=libraries%2FMakefile;h=56c1b7b3869d8957b973387ba7a8ffc2bd1ac2ba;hb=27759873a8bd45c487a6e636f7a12c37e87f616f;hp=928871a658719782e5f6657f7fa0488bb8395c94;hpb=9efc323b5b57a0b4d50008c942a90a45dc51ee2d;p=ghc-hetmet.git diff --git a/libraries/Makefile b/libraries/Makefile index 928871a..56c1b7b 100644 --- a/libraries/Makefile +++ b/libraries/Makefile @@ -36,9 +36,16 @@ TOP=.. include $(TOP)/mk/boilerplate.mk include $(TOP)/mk/cabal-flags.mk +ifeq "$(stage)" "" +stage := 1 +endif + # Any libraries listed here should also be in ../packages -SUBDIRS = ghc-prim $(INTEGER_LIBRARY) base syb base3-compat array packedstring +SUBDIRS := + +ifeq "$(stage)" "1" +SUBDIRS += ghc-prim $(INTEGER_LIBRARY) base syb base3-compat array packedstring SUBDIRS += containers bytestring old-locale old-time filepath ifeq "$(GhcLibsWithUnix)" "YES" SUBDIRS += unix @@ -65,6 +72,11 @@ SUBDIRS += $(wildcard time) SUBDIRS += $(wildcard stm) SUBDIRS += $(wildcard xhtml) SUBDIRS += $(wildcard parallel) +endif +endif + +ifeq "$(stage)" "2" +ifneq "$(GhcBootLibs)" "YES" ifneq "$(wildcard dph)" "" SUBDIRS += dph/dph-base SUBDIRS += dph/dph-prim-interface @@ -74,6 +86,7 @@ SUBDIRS += dph/dph-seq SUBDIRS += dph/dph-par endif endif +endif # ----------------------------------------------------------------------------- @@ -189,7 +202,7 @@ configure: $(foreach SUBDIR,$(SUBDIRS), \ ALL_CONFIGURE_FLAGS = \ $(INSTALL_DIRS_CONFIGURE_FLAGS) \ - $(USE_STAGE1_CONFIGURE_FLAGS) \ + $(USE_STAGE$(stage)_CONFIGURE_FLAGS) \ $(COMMON_CONFIGURE_FLAGS) \ --haddock-options="--use-contents=../index.html \ --use-index=../doc-index.html" \