#!/bin/sh MPFR_SRC=../../mpfr-2.4.1 PREFIX=/build/win-mpfr-install GMP_BUILD=/build/win-gmp-install BUILD=mingw32 if test "$1" = "c" then shift $MPFR_SRC/configure --prefix="$PREFIX" \ --build=$BUILD \ --with-gmp="$GMP_BUILD" \ CFLAGS="-O2 -mtune=generic" if "$?" != "0" then exit $? fi fi if test "$1" = "m" then shift make if "$?" != "0" then exit $? fi fi if test "$1" = "i" then make install fi exit $?