Browse Source

Do not deploy import libraries on Windows when NO_STATIC=1

pull/2531/head
Harmen Stoppels 6 years ago
parent
commit
06ef74c84f
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      Makefile.install

+ 7
- 1
Makefile.install View File

@@ -89,12 +89,18 @@ ifeq ($(OSNAME), Darwin)
endif
ifeq ($(OSNAME), WINNT)
@-cp $(LIBDLLNAME) "$(DESTDIR)$(OPENBLAS_BINARY_DIR)"
@-cp $(IMPLIBNAME) "$(DESTDIR)$(OPENBLAS_LIBRARY_DIR)"
endif
ifeq ($(OSNAME), CYGWIN_NT)
@-cp $(LIBDLLNAME) "$(DESTDIR)$(OPENBLAS_BINARY_DIR)"
endif
ifneq ($(NO_STATIC),1)
ifeq ($(OSNAME), WINNT)
@-cp $(IMPLIBNAME) "$(DESTDIR)$(OPENBLAS_LIBRARY_DIR)"
endif
ifeq ($(OSNAME), CYGWIN_NT)
@-cp $(IMPLIBNAME) "$(DESTDIR)$(OPENBLAS_LIBRARY_DIR)"
endif
endif
endif

else


Loading…
Cancel
Save