=================================================================== RCS file: /home/cvs/OpenXM/src/ox_toolkit/make-configure,v retrieving revision 1.3 retrieving revision 1.6 diff -u -p -r1.3 -r1.6 --- OpenXM/src/ox_toolkit/make-configure 2004/12/15 12:17:32 1.3 +++ OpenXM/src/ox_toolkit/make-configure 2021/03/24 14:32:48 1.6 @@ -1,13 +1,19 @@ #!/bin/sh -# $OpenXM: OpenXM/src/ox_toolkit/make-configure,v 1.2 2004/06/28 12:39:11 ohara Exp $ +# $OpenXM: OpenXM/src/ox_toolkit/make-configure,v 1.5 2019/01/28 04:51:51 takayama Exp $ prefix=`cd ../..; pwd` +cache_file=`pwd`/config.cache case "$1" in "-f"|"--force") - automake - autoconf - ./configure --prefix=${prefix} --with-gmp - ;; + automake + autoconf + touch ${cache_file} + if [ -z $TARGET_TYPE ]; then + ./configure --prefix=${prefix} --with-gmp --cache-file=${cache_file} --enable-shared + else + ./configure --host=${TARGET_TYPE} --prefix=${prefix} --with-gmp --cache-file=${cache_file} --enable-shared + fi + ;; *) if [ ! -f ./.configure_done ]; then if [ ! -f ./Makefile.in ]; then @@ -16,7 +22,12 @@ if [ ! -f ./.configure_done ]; then if [ ! -x ./configure ]; then autoconf fi - ./configure --prefix=${prefix} --with-gmp + touch ${cache_file} + if [ -z $TARGET_TYPE ]; then + ./configure --prefix=${prefix} --with-gmp --cache-file=${cache_file} --enable-shared + else + ./configure --host=${TARGET_TYPE} --prefix=${prefix} --with-gmp --cache-file=${cache_file} --enable-shared + fi fi ;; esac