X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=distrib%2Fhc-build;h=f64345fbc270a992d30d03ac648f22246841eb53;hp=6fb9f8687a7025bf587ed20d261e1f4a84ef9646;hb=cab3c5cb1a0038412472172cb0b25bc81dfdde8f;hpb=4b7199131876dc3af72612a84348b0c03c7849a5 diff --git a/distrib/hc-build b/distrib/hc-build index 6fb9f86..f64345f 100644 --- a/distrib/hc-build +++ b/distrib/hc-build @@ -1,34 +1,101 @@ -#/bin/sh +#!/bin/sh -e # Manuel M. T. Chakravarty , June 2000 +# Updated for GHC 5.00, Simon Marlow, March 2001 +# Updated for GHC 5.04.3, Urban Boquist, March 2003 # # Script to build GHC from .hc files (must be run in the fptools/ root # directory into which the source and .hc files must already have been # unpacked). All options are passed through to ./configure (especially # useful with --prefix). -configopts="$*" +configopts="$*" # e.g., --enable-hc-boot-unregisterised +PWD=`pwd` + +# check for GNU make +# +MAKENAMES="gmake make no-make" +for make in $MAKENAMES; do + MAKE=$make + $make --version 2>&1 | grep "GNU Make" >/dev/null && break +done +if [ $MAKE = no-make ]; then + echo "Fatal error: Cannot find the GNU make utility" + exit 1 +fi # build configuration # +case "$configopts" in +*--enable-hc-boot-unregisterised*) cat >mk/build.mk <mk/build.mk <>mk/build.mk -make -C ghc/lib clean boot all || exit 1 -make -C hslibs clean boot all +# At this point, the tree should be safe to do 'make install' in.