X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Makefile;h=7a16c7143f297046ca82f6fe2eabe1a1eda89322;hb=51cae5224f2f2f5db8b3196d0f5118ba4246701a;hp=7cb3ef1bb81b44644d0bcca40967b51da31c8769;hpb=960b35ddc178f6b8af1a8809aecb0a43177abbc8;p=ghc-hetmet.git diff --git a/Makefile b/Makefile index 7cb3ef1..7a16c71 100644 --- a/Makefile +++ b/Makefile @@ -74,7 +74,7 @@ endif SUBDIRS = gmp libffi includes utils docs rts compiler ghc driver libraries libraries/Cabal/doc -check-all: check-packages +check-all: check-packages check-tools # Sanity check that all the boot libraries are in the tree, to catch # failure to run darcs-all. @@ -93,6 +93,21 @@ check-packages : exit 1; \ fi +HAVE_EVAL := NO +$(eval HAVE_EVAL := YES) + +check-tools: +ifeq "$(HSCOLOUR_SRCS) $(HSCOLOUR)" "YES " + @echo "HsColour needed but wasn't found." + @echo "Set HSCOLOUR_SRCS=NO if you don't want to use it" + exit 1 +endif +ifeq "$(HAVE_EVAL)" "NO" + @echo "Your make doesn't support eval. You need GNU make >= 3.80" + exit 1 +endif + @: + ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32" ifneq "$(WhatGccIsCalled)" "" GCC_LIB_DEP = stamp.inplace-gcc-lib @@ -104,7 +119,6 @@ stage1 : $(GCC_LIB_DEP) check-all $(MAKE) -C gmp all $(MAKE) -C utils/mkdependC boot $(MAKE) -C utils with-bootstrapping-compiler - $(MAKE) -C libffi all @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \ for i in $(SUBDIRS_BUILD); do \ echo "------------------------------------------------------------------------"; \ @@ -122,6 +136,7 @@ stage1 : $(GCC_LIB_DEP) check-all $(MAKE) --no-print-directory -C $$i $(MFLAGS) all; \ if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ; then true; else exit 1; fi; \ done + $(MAKE) -C libffi all $(MAKE) -C rts boot $(MAKE) -C rts $(MAKE) -C libraries all @@ -137,6 +152,7 @@ stage2 : check-all $(MAKE) -C compiler stage=2 boot $(MAKE) -C compiler stage=2 $(MAKE) -C utils with-stage-2 + $(MAKE) -C libraries stage=2 all ifeq "$(HADDOCK_DOCS)" "YES" $(MAKE) -C libraries doc $(MAKE) -C compiler doc stage=2 @@ -194,6 +210,8 @@ install-strip: # Same as default rule, but we pass $(INSTALL_STAGE) to $(MAKE) too install :: check-packages + $(MKDIRHIER) $(DESTDIR)$(datadir) + echo "[]" > $(DESTDIR)$(datadir)/package.conf @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \ for i in $(SUBDIRS); do \ echo "------------------------------------------------------------------------"; \