comparison src/openblas.mk @ 3096:3b9908a79b71

Create/verify HOST_BINDIR before installing openblas.dll src/openblas.mk: Create HOST_BINDIR before copying .dll to it.
author John Donoghue <john.donoghue@ieee.org>
date Tue, 25 Jun 2013 20:16:00 -0400
parents 31241ea2a057
children d99f6d03618c
comparison
equal deleted inserted replaced
3095:f2bbfa69647e 3096:3b9908a79b71
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)' $($(PKG)_MAKE_OPTS) 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) -d $(HOST_BINDIR); \
33 $(INSTALL) $(HOST_LIBDIR)/libopenblas.dll $(HOST_BINDIR)/; \ 34 $(INSTALL) $(HOST_LIBDIR)/libopenblas.dll $(HOST_BINDIR)/; \
34 fi 35 fi
35 endef 36 endef