X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FMakefile;h=7f9985ee20d9664ac0330d5f623a946b2c84104f;hb=d811abf65c8a370f490e104bef8224f1998e2325;hp=5c014a2b5cf7c351b2b9c0750c044cf376133c26;hpb=bb08e42e70a20fc011abc3e4fbccb7d3680b98be;p=ghc-hetmet.git diff --git a/ghc/rts/Makefile b/ghc/rts/Makefile index 5c014a2..7f9985e 100644 --- a/ghc/rts/Makefile +++ b/ghc/rts/Makefile @@ -1,5 +1,5 @@ #----------------------------------------------------------------------------- -# $Id: Makefile,v 1.20 2000/03/14 01:50:49 sof Exp $ +# $Id: Makefile,v 1.21 2000/03/15 15:03:20 simonmar Exp $ # # This is the Makefile for the runtime-system stuff. # This stuff is written in C (and cannot be written in Haskell). @@ -127,6 +127,9 @@ endif ifneq "$(HaveLibGmp)" "YES" boot :: if [ ! -f gmp/configure ] ; then ( cd gmp && autoconf ); fi; + if [ ! -f gmp/mpn/configure ] ; then ( cd gmp/mpn && autoconf ); fi; + if [ ! -f gmp/mpz/configure ] ; then ( cd gmp/mpz && autoconf ); fi; + if [ ! -f gmp/mpz/tests/configure ] ; then ( cd gmp/mpz/tests && autoconf ); fi; cd gmp && ./configure --target=$(HOSTPLATFORM) # Slight cheatage here to past host as target, but x-compilation isn't supported by ghc.