[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.2, Thu Aug 15 02:31:52 2002 UTC (21 years, 9 months ago) by ohara
Branch: MAIN
Changes since 1.1: +16 -7 lines

for cygwin (testing)

#!/bin/sh
# $OpenXM: OpenXM/src/ox_math/make-configure,v 1.2 2002/08/15 02:31:52 ohara Exp $

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