version 1.2, 2002/08/15 02:31:52 |
version 1.4, 2005/02/09 07:13:49 |
|
|
#!/bin/sh |
#!/bin/sh |
# $OpenXM: OpenXM/src/ox_math/make-configure,v 1.1 2000/02/08 21:14:01 ohara Exp $ |
# $OpenXM: OpenXM/src/ox_math/make-configure,v 1.3 2002/08/22 17:04:25 ohara Exp $ |
|
|
if [ ! -f ./.configure_done ]; then |
if [ ! -f ./.configure_done ]; then |
case `uname` in |
case `uname` in |
CYGWIN*) |
CYGWIN*) |
cp -f Makefile.cygwin Makefile |
cp -f Makefile.cygwin Makefile |
(cd mathlink; ./configure-cygwin) |
(cd mathlink; sh ./configure-cygwin) |
;; |
;; |
*) |
*) |
if [ ! -x ./configure ]; then |
if [ ! -x ./configure ]; then |
autoconf |
autoconf |
fi |
fi |
./configure |
./configure --with-gmp |
;; |
;; |
esac |
esac |
fi |
fi |