view src/libf2c.mk @ 3078:31241ea2a057

Updates for openblas compile * src/openblas.mk: Add MAKE_OPTS to install call. * src/suitesparse.mk: Fix typo on adding PKG_BLAS_LIB.
author John Donoghue <john.donoghue@ieee.org>
date Sun, 23 Jun 2013 09:45:35 -0400
parents 5ef49fb3299d
children 13be64f9f16d
line wrap: on
line source

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

PKG             := libf2c
$(PKG)_IGNORE   :=
$(PKG)_CHECKSUM := f71066b41695738dec2261de71eaf02a1aaffe8b
$(PKG)_SUBDIR   :=
$(PKG)_FILE     := $(PKG).zip
$(PKG)_URL      := http://www.netlib.org/f2c/$($(PKG)_FILE)
$(PKG)_DEPS     :=

define $(PKG)_UPDATE
    echo 1
endef

define $(PKG)_BUILD
    $(MAKE) -C '$(1)' -j '$(JOBS)' -f makefile.u \
        CC=$(MXE_CC) \
        AR=$(MXE_AR) \
        LD=$(MXE_LD) \
        RANLIB=$(MXE_RANLIB) \
        CFLAGS='-O -DUSE_CLOCK'
    $(INSTALL) -m644 '$(1)/libf2c.a' '$(HOST_LIBDIR)'
    $(INSTALL) -m644 '$(1)/f2c.h'    '$(HOST_INCDIR)'
endef