Browse Source

Added support for NO_SHARED in make install.

tags/v0.2.9.rc1
lucasb-eyer 11 years ago
parent
commit
91eaea364b
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      Makefile.install

+ 2
- 0
Makefile.install View File

@@ -54,6 +54,7 @@ endif
@cd $(DESTDIR)$(OPENBLAS_LIBRARY_DIR) ; \
ln -fs $(LIBNAME) $(LIBPREFIX).$(LIBSUFFIX)
#for install shared library
ifndef NO_SHARED
@echo Copying the shared library to $(DESTDIR)$(OPENBLAS_LIBRARY_DIR)
ifeq ($(OSNAME), Linux)
@install -pm755 $(LIBSONAME) $(DESTDIR)$(OPENBLAS_LIBRARY_DIR)
@@ -81,6 +82,7 @@ ifeq ($(OSNAME), WINNT)
endif
ifeq ($(OSNAME), CYGWIN_NT)
@-cp $(LIBDLLNAME) $(OPENBLAS_LIBRARY_DIR)
endif
endif

@echo Install OK!


Loading…
Cancel
Save