=================================================================== RCS file: /home/cvs/OpenXM/src/gmp/Makefile,v retrieving revision 1.10 retrieving revision 1.13 diff -u -p -r1.10 -r1.13 --- OpenXM/src/gmp/Makefile 2004/03/26 08:54:07 1.10 +++ OpenXM/src/gmp/Makefile 2007/02/18 05:31:58 1.13 @@ -1,11 +1,11 @@ -# $OpenXM: OpenXM/src/gmp/Makefile,v 1.9 2004/03/25 04:54:36 takayama Exp $ +# $OpenXM: OpenXM/src/gmp/Makefile,v 1.12 2004/12/01 07:06:19 ohara Exp $ OpenXM_HOME=../.. PREFIX=${OpenXM_HOME} DISTDIR=${OpenXM_HOME}/../OpenXM_dist RM = /bin/rm MASTER_SITE=ftp://ftp.math.kobe-u.ac.jp/pub/OpenXM/misc/ -DISTFILES=gmp-4.1.2.tar.gz -GMP=gmp-4.1.2 +DISTFILES=gmp-4.2.1.tar.gz +GMP=gmp-4.2.1 all : build @@ -27,7 +27,8 @@ patch: extract configure: patch @if [ ! -f work/.configure_done ]; then \ - (cd work/${GMP} ; ./configure --prefix `cd ../..; cd ${OpenXM_HOME}; pwd`) ; \ + prefix=`cd ${OpenXM_HOME}; pwd` ; \ + (cd work/${GMP} ; ./configure --prefix="$$prefix" ) ; \ fi @touch work/.configure_done @@ -41,7 +42,7 @@ install: build -mkdir ${PREFIX}/bin ${PREFIX}/lib @if [ ! -f work/.install_done ]; then \ (cd work/${GMP} ; ${MAKE} install) ; \ - for i in config.h gmp-impl.h gmp-mparam.h; do \ + for i in config.h gmp-impl.h gmp-mparam.h fib_table.h mp_bases.h; do \ cp work/${GMP}/$$i ${OpenXM_HOME}/include ; \ done ; \ fi