| version 1.3, 2015/09/28 12:30:57 |
version 1.4, 2021/03/24 14:32:47 |
|
|
| # $OpenXM: OpenXM/src/mpc/Makefile,v 1.2 2015/09/28 05:52:13 takayama Exp $ |
# $OpenXM: OpenXM/src/mpc/Makefile,v 1.3 2015/09/28 12:30:57 takayama Exp $ |
| OpenXM_HOME=../.. |
OpenXM_HOME=../.. |
| PREFIX=${OpenXM_HOME} |
PREFIX=${OpenXM_HOME} |
| DISTDIR=${OpenXM_HOME}/../OpenXM_dist |
DISTDIR=${OpenXM_HOME}/../OpenXM_dist |
|
|
| configure : patch |
configure : patch |
| @if [ ! -f work/.configure_done ]; then \ |
@if [ ! -f work/.configure_done ]; then \ |
| prefix=`cd ${OpenXM_HOME}; pwd` ; \ |
prefix=`cd ${OpenXM_HOME}; pwd` ; \ |
| if [ "`uname | sed -e 's/_.*$$//'`" = "CYGWIN" ]; then \ |
if [ -z $TARGET_TYPE ]; then \ |
| make configure-cygwin ; \ |
if [ "`uname | sed -e 's/_.*$$//'`" = "CYGWIN" ]; then \ |
| elif [ "`uname | sed -e 's/_.*$$//'`" = "MSYS" ]; then \ |
make configure-cygwin ; \ |
| make configure-msys ; \ |
elif [ "`uname | sed -e 's/_.*$$//'`" = "MSYS" ]; then \ |
| |
make configure-msys ; \ |
| |
else \ |
| |
make configure-others ; \ |
| |
fi ; \ |
| else \ |
else \ |
| make configure-others ; \ |
make configure-cross ; \ |
| fi ; \ |
fi ; \ |
| fi |
fi |
| @touch work/.configure_done |
@touch work/.configure_done |
|
|
| configure-others: |
configure-others: |
| prefix=`cd ${OpenXM_HOME}; pwd` ; \ |
prefix=`cd ${OpenXM_HOME}; pwd` ; \ |
| (cd ${WRKSRC}; CC=${CC} ./configure --prefix=$$prefix --with-gmp-lib="$$prefix/lib" --with-gmp-include="$$prefix/include" ) |
(cd ${WRKSRC}; CC=${CC} ./configure --prefix=$$prefix --with-gmp-lib="$$prefix/lib" --with-gmp-include="$$prefix/include" ) |
| |
configure-cross: |
| |
prefix=`cd ${OpenXM_HOME}; pwd` ; \ |
| |
(cd ${WRKSRC}; CC=${CC} ./configure --host=${TARGET_TYPE} --prefix=$$prefix --with-gmp-lib="$$prefix/lib" --with-gmp-include="$$prefix/include" ) |
| |
|
| build : configure |
build : configure |
| @if [ ! -f work/.build_done ]; then \ |
@if [ ! -f work/.build_done ]; then \ |