comparison src/openblas.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 bdb4b64f2ff8
children 3b9908a79b71
comparison
equal deleted inserted replaced
3077:9c56d108c141 3078:31241ea2a057
26 echo $($(PKG)_VERSION) 26 echo $($(PKG)_VERSION)
27 endef 27 endef
28 28
29 define $(PKG)_BUILD 29 define $(PKG)_BUILD
30 $(MAKE) -C '$(1)' -j '$(JOBS)' $($(PKG)_MAKE_OPTS) 30 $(MAKE) -C '$(1)' -j '$(JOBS)' $($(PKG)_MAKE_OPTS)
31 $(MAKE) -C '$(1)' -j 1 PREFIX='$(HOST_PREFIX)' install 31 $(MAKE) -C '$(1)' -j 1 PREFIX='$(HOST_PREFIX)' $($(PKG)_MAKE_OPTS) install
32 if [ $(BUILD_SHARED) = yes ]; then \ 32 if [ $(BUILD_SHARED) = yes ]; then \
33 $(INSTALL) $(HOST_LIBDIR)/libopenblas.dll $(HOST_BINDIR)/; \ 33 $(INSTALL) $(HOST_LIBDIR)/libopenblas.dll $(HOST_BINDIR)/; \
34 fi 34 fi
35 endef 35 endef