view src/gcc-isl.mk @ 3594:30f4b78227af

dbus update to 1.8.2, qt update to 4.8.6. * src/dbus.mk: update to version 1.8.2. * src/qt-1-cherrypicks.patch: update from latest mxe devel. * src/qt.mk: update to version 4.8.6.
author John Donoghue
date Tue, 13 May 2014 16:52:21 -0400
parents f8e5b89bb3e3
children d95b8b84cea7
line wrap: on
line source

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

PKG             := gcc-isl
$(PKG)_IGNORE    = $(isl_IGNORE)
$(PKG)_VERSION   = $(isl_VERSION)
$(PKG)_CHECKSUM  = $(isl_CHECKSUM)
$(PKG)_SUBDIR    = $(isl_SUBDIR)
$(PKG)_FILE      = $(isl_FILE)
$(PKG)_URL       = $(isl_URL)
$(PKG)_URL_2     = $(isl_URL_2)
$(PKG)_DEPS     := gcc-gmp

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

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