#!/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