view src/gcc-gmp.mk @ 3593:9a78c7c94ba8

of-*: update of-control=2.6.3, of-io=2.2.1, io-image=2.2.1 * src/build_packages.m: update version numbers of packages. * src/of-control.mk: update version, checksum. * src/of-image.mk: update version, checksum. * src/of-io.mk: update version, checksum.
author John Donoghue <john.donoghue@ieee.org>
date Tue, 29 Apr 2014 15:34:27 -0400
parents f8e5b89bb3e3
children d95b8b84cea7
line wrap: on
line source

# This file is part of MXE.
# See index.html for further information.

PKG             := gcc-gmp
$(PKG)_IGNORE    = $(gmp_IGNORE)
$(PKG)_VERSION  := $(gmp_VERSION)
$(PKG)_CHECKSUM  = $(gmp_CHECKSUM)
$(PKG)_SUBDIR    = $(gmp_SUBDIR)
$(PKG)_FILE      = $(gmp_FILE)
$(PKG)_URL       = $(gmp_URL)
$(PKG)_URL_2     = $(gmp_URL_2)
$(PKG)_DEPS     :=

define $(PKG)_UPDATE
    echo $(gmp_VERSION)
endef

define $(PKG)_BUILD
    mkdir '$(1).build'
    cd    '$(1).build' && '$(1)/configure' \
        --prefix='$(BUILD_TOOLS_PREFIX)' \
        --disable-shared
    $(MAKE) -C '$(1).build' -j '$(JOBS)'
    $(MAKE) -C '$(1).build' -j 1 install
endef