comparison src/openblas.mk @ 3681:f0b359d91bf0

openblas: update to 0.2.10 * src/openblas.mk: update version, remove copy of dll to bin folder as now already done
author John Donoghue <john.donoghue@ieee.org>
date Thu, 07 Aug 2014 18:37:10 -0400
parents f44dd0186692
children d0aee8d2e4f4
comparison
equal deleted inserted replaced
3680:64912b529fc3 3681:f0b359d91bf0
1 # This file is part of MXE. 1 # This file is part of MXE.
2 # See index.html for further information. 2 # See index.html for further information.
3 3
4 PKG := openblas 4 PKG := openblas
5 $(PKG)_IGNORE := 5 $(PKG)_IGNORE :=
6 $(PKG)_VERSION := 0.2.8 6 $(PKG)_VERSION := 0.2.10
7 $(PKG)_CHECKSUM := d012ebc2b8dcd3e95f667dff08318a81479a47c3 7 $(PKG)_CHECKSUM := c4a5ca4cb9876a90193f81a0c38f4abccdf2944d
8 $(PKG)_SUBDIR := OpenBLAS-$($(PKG)_VERSION) 8 $(PKG)_SUBDIR := OpenBLAS-$($(PKG)_VERSION)
9 $(PKG)_FILE := $($(PKG)_SUBDIR).tar.gz 9 $(PKG)_FILE := $($(PKG)_SUBDIR).tar.gz
10 $(PKG)_URL := http://github.com/xianyi/OpenBLAS/archive/v$($(PKG)_VERSION).tar.gz 10 $(PKG)_URL := http://github.com/xianyi/OpenBLAS/archive/v$($(PKG)_VERSION).tar.gz
11 $(PKG)_DEPS := 11 $(PKG)_DEPS :=
12 12
25 echo $($(PKG)_VERSION) 25 echo $($(PKG)_VERSION)
26 endef 26 endef
27 27
28 define $(PKG)_BUILD 28 define $(PKG)_BUILD
29 $(MAKE) -C '$(1)' -j '$(JOBS)' $($(PKG)_MAKE_OPTS) 29 $(MAKE) -C '$(1)' -j '$(JOBS)' $($(PKG)_MAKE_OPTS)
30 $(MAKE) -C '$(1)' -j 1 PREFIX='$(HOST_PREFIX)' $($(PKG)_MAKE_OPTS) install 30 $(MAKE) -C '$(1)' -j 1 $($(PKG)_MAKE_OPTS) install
31 if [ $(MXE_WINDOWS_BUILD) = yes ] && [ $(BUILD_SHARED) = yes ]; then \
32 $(INSTALL) -d $(HOST_BINDIR); \
33 $(INSTALL) $(HOST_LIBDIR)/libopenblas.dll $(HOST_BINDIR)/; \
34 fi
35 endef 31 endef