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

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

Revision 1.5, Mon Jan 28 04:51:51 2019 UTC (5 years, 4 months ago) by takayama
Branch: MAIN
Changes since 1.4: +3 -3 lines

Added --enable-shared to configure to avoid the error "recompile with -fPIC"

#!/bin/sh
# $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
    touch ${cache_file}
    ./configure --prefix=${prefix} --with-gmp --cache-file=${cache_file} --enable-shared
    ;;
*)
if [ ! -f ./.configure_done ]; then 
    if [ ! -f ./Makefile.in ]; then 
		automake 
  	fi
    if [ ! -x ./configure ]; then 
		autoconf 
  	fi
    touch ${cache_file}
    ./configure --prefix=${prefix} --with-gmp --cache-file=${cache_file} --enable-shared
fi
    ;;
esac
touch .configure_done