[BACK]Return to make-configure CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_math

File: [local] / OpenXM / src / ox_math / make-configure (download)

Revision 1.3, Thu Aug 22 17:04:25 2002 UTC (21 years, 9 months ago) by ohara
Branch: MAIN
CVS Tags: RELEASE_1_2_2_KNOPPIX_b, RELEASE_1_2_2_KNOPPIX, RELEASE_1_2_2
Changes since 1.2: +2 -2 lines

Now, mathlink/configure-cygwin is loaded via sh.

#!/bin/sh
# $OpenXM: OpenXM/src/ox_math/make-configure,v 1.3 2002/08/22 17:04:25 ohara Exp $

if [ ! -f ./.configure_done ]; then
	case `uname` in
    CYGWIN*)
        cp -f Makefile.cygwin Makefile
        (cd mathlink; sh ./configure-cygwin)
        ;;
    *)
        if [ ! -x ./configure ]; then
    		autoconf
      	fi
        ./configure
    	;;
    esac
fi
touch .configure_done