version 1.6, 2004/02/24 00:02:10 |
version 1.14, 2007/04/03 17:53:28 |
|
|
# $OpenXM: OpenXM/src/gmp/Makefile,v 1.5 2004/02/23 05:56:32 takayama Exp $ |
# $OpenXM: OpenXM/src/gmp/Makefile,v 1.13 2007/02/18 05:31:58 ohara Exp $ |
OpenXM_HOME=../.. |
OpenXM_HOME=../.. |
OpenXM_contrib=${OpenXM_HOME}/../OpenXM_contrib |
PREFIX=${OpenXM_HOME} |
OpenXM_lib=${OpenXM_HOME}/lib |
DISTDIR=${OpenXM_HOME}/../OpenXM_dist |
OpenXM_include=${OpenXM_HOME}/include |
RM = /bin/rm |
GMP=${OpenXM_contrib}/gmp |
MASTER_SITE=ftp://ftp.math.kobe-u.ac.jp/pub/OpenXM/misc/ |
RM=rm |
DISTNAME=gmp-4.2.1 |
all: |
DISTFILES=${DISTNAME}.tar.gz |
@if [ ! -f ./.use_ports ]; then \ |
WRKSRC=work/${DISTNAME} |
make all-l ; \ |
PATCHFILES = gmp.diff |
else \ |
|
make -f Makefile-ports all ; \ |
all : build |
|
|
|
fetch: |
|
-mkdir work |
|
@if [ ! -f work/.fetch_done ]; then \ |
|
${OpenXM_HOME}/bin/oxfetch.sh ${MASTER_SITE}${DISTFILES} ${DISTDIR}; \ |
|
fi |
|
@touch work/.fetch_done |
|
|
|
extract: fetch |
|
@if [ ! -f work/.extract_done ]; then \ |
|
cat ${DISTDIR}/${DISTFILES} | (cd work ; tar xzvf -) ; \ |
|
fi |
|
@touch work/.extract_done |
|
|
|
patch: extract |
|
@if [ ! -f work/.patch_done ]; then \ |
|
for i in ${PATCHFILES} ; do \ |
|
cat $$i | (cd ${WRKSRC}; patch -p0) ; \ |
|
done ; \ |
|
if [ `uname` = Darwin -a `uname -m` = i386 ]; then \ |
|
(cd ${WRKSRC}/mpn/x86; ${RM} *dive_1* */*dive_1* */*/*dive_1* */*mode1o* */*/*mode1o*) ; \ |
|
fi ; \ |
fi |
fi |
install: |
@touch work/.patch_done |
@if [ ! -f ./.use_ports ]; then \ |
|
make install-l ; \ |
configure: patch |
else \ |
@if [ ! -f work/.configure_done ]; then \ |
make -f Makefile-ports install ; \ |
prefix=`cd ${OpenXM_HOME}; pwd` ; \ |
|
(cd ${WRKSRC} ; CC=${CC} ./configure --prefix="$$prefix" --enable-cxx) ; \ |
fi |
fi |
all-l: configure-l |
@touch work/.configure_done |
-@if [ ! -f ./.make_done ]; then \ |
|
(cd ${GMP} ; make) ; \ |
build : configure |
touch ./.make_done ; \ |
@if [ ! -f work/.build_done ]; then \ |
|
(cd ${WRKSRC} ; ${MAKE} CC=${CC}) ; \ |
fi |
fi |
install-l: install-exec-l |
@touch work/.build_done |
install-exec-l: all-l |
|
if [ ! -f ./.install_done ]; then \ |
install: build |
(cd ${GMP}; make install-exec) ; \ |
-mkdir ${PREFIX}/bin ${PREFIX}/lib |
rm -f ${OpenXM_include}/config.h ${OpenXM_include}/gmp-impl.h ${OpenXM_include}/gmp-mparam.h ; \ |
@if [ ! -f work/.install_done ]; then \ |
cp ${GMP}/gmp.h ${OpenXM_include} ; \ |
(cd ${WRKSRC} ; ${MAKE} install) ; \ |
touch ./.install_done ; \ |
for i in config.h gmp-impl.h gmp-mparam.h fib_table.h mp_bases.h; do \ |
|
cp ${WRKSRC}/$$i ${OpenXM_HOME}/include ; \ |
|
done ; \ |
fi |
fi |
configure: |
@touch work/.install_done |
@if [ ! -f ./.use_ports ]; then \ |
|
make configure-l ; \ |
clean: |
fi |
-${RM} -rf work |
configure-l: |
|
if [ ! -f ./.configure_done ]; then \ |
distclean: clean |
(cd ${GMP} ; ./configure --prefix=`pwd`/../../OpenXM ) ; \ |
|
touch ./.configure_done ; \ |
|
fi |
|
clean: |
|
@if [ -f ./.make_done ]; then \ |
|
(cd ${GMP} ; make clean) \ |
|
fi |
|
${RM} -f ./.*done |
|
distclean: |
|
-@if [ -f ./.make_done ]; then \ |
|
(cd ${GMP} ; make distclean) \ |
|
fi |
|
${RM} -f ./.*done |
|