diff options
author | Ian Lynagh <igloo@earth.li> | 2008-07-16 15:04:41 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-07-16 15:04:41 +0000 |
commit | 9412e62942ebab0599c7fb0b358a9d4869647b67 (patch) | |
tree | 1e75be9bfafd82140046630569a55fa6e8d1842e /Makefile | |
parent | e0b93c022e39d07b871e9ed97d40617eb6bee63a (diff) | |
download | haskell-9412e62942ebab0599c7fb0b358a9d4869647b67.tar.gz |
Get building GHC itself with Cabal more-or-less working
Installing and bindist creation don't work, but they were already broken.
Only tested validating with one setup.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -67,12 +67,12 @@ include $(TOP)/mk/boilerplate.mk # We can't 'make boot' in libraries until stage1 is built ifeq "$(BootingFromHc)" "YES" -SUBDIRS_BUILD = includes rts compiler docs utils driver +SUBDIRS_BUILD = includes rts compiler ghc docs utils driver else -SUBDIRS_BUILD = includes utils driver docs compiler rts libraries/Cabal/doc +SUBDIRS_BUILD = includes utils driver docs compiler ghc rts libraries/Cabal/doc endif -SUBDIRS = gmp libffi includes utils driver docs rts libraries compiler libraries/Cabal/doc +SUBDIRS = gmp libffi includes utils driver docs rts compiler ghc libraries libraries/Cabal/doc check-all: check-tools check-packages @@ -142,6 +142,7 @@ stage1 : $(GCC_LIB_DEP) check-all stage2 : check-all $(MAKE) -C compiler boot stage=2 $(MAKE) -C compiler stage=2 + $(MAKE) -C ghc stage=2 stage3 : check-all |