summaryrefslogtreecommitdiff
path: root/mk/mpfr.mk
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2011-08-25 15:13:58 +0200
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2011-08-25 15:15:15 +0200
commit76d5fc52705c65d58612085d19ca1f71bec1a42c (patch)
tree3df9e1013237c53a062bf8cc4f1780a10632d767 /mk/mpfr.mk
parent6d54fbcb7a08b39e90ed45f85db140f47cdedd4a (diff)
downloadembtoolkit-76d5fc52705c65d58612085d19ca1f71bec1a42c.tar.gz
embtoolkit-76d5fc52705c65d58612085d19ca1f71bec1a42c.tar.bz2
embtoolkit-76d5fc52705c65d58612085d19ca1f71bec1a42c.tar.xz
Toolchain: gmp, mpfr, mpc, binutils: use generic macros
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'mk/mpfr.mk')
-rw-r--r--mk/mpfr.mk44
1 files changed, 44 insertions, 0 deletions
diff --git a/mk/mpfr.mk b/mk/mpfr.mk
new file mode 100644
index 0000000..c78ec2c
--- /dev/null
+++ b/mk/mpfr.mk
@@ -0,0 +1,44 @@
+################################################################################
+# Embtoolkit
+# Copyright(C) 2009-2011 Abdoulaye Walsimou GAYE.
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+################################################################################
+#
+# \file mpfr.mk
+# \brief mpfr.mk of Embtoolkit
+# \author Abdoulaye Walsimou GAYE <awg@embtoolkit.org>
+# \date May 2009
+################################################################################
+
+MPFR_HOST_NAME := mpfr
+MPFR_HOST_VERSION := $(call embtk_get_pkgversion,mpfr)
+MPFR_HOST_SITE := http://www.mpfr.org/mpfr-$(MPFR_HOST_VERSION)
+MPFR_HOST_PACKAGE := mpfr-$(MPFR_HOST_VERSION).tar.bz2
+MPFR_HOST_SRC_DIR := $(TOOLS_BUILD)/mpfr-$(MPFR_HOST_VERSION)
+MPFR_HOST_BUILD_DIR := $(TOOLS_BUILD)/mpfr-build
+MPFR_HOST_DIR := $(HOSTTOOLS)/usr/local/mpfr-host
+
+export MPFR_HOST_DIR
+
+MPFR_HOST_CONFIGURE_OPTS := --disable-shared --enable-static
+MPFR_HOST_CONFIGURE_OPTS += --with-gmp=$(GMP_HOST_DIR)
+MPFR_HOST_PREFIX := $(MPFR_HOST_DIR)
+
+mpfr_host_install:
+ $(call embtk_install_hostpkg,mpfr_host)
+
+download_mpfr_host:
+ $(call embtk_download_pkg,mpfr_host)