Browse Source

Merge pull request #2773 from martin-frbg/issue2770

Fix Makefiles still mishandling NO_CBLAS=0 and NO_LAPACKE=0
tags/v0.3.11^2
Martin Kroeker GitHub 5 years ago
parent
commit
2a4bb797db
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      Makefile
  2. +1
    -1
      interface/Makefile

+ 2
- 2
Makefile View File

@@ -141,7 +141,7 @@ ifndef NO_FBLAS
$(MAKE) -C test all
endif
$(MAKE) -C utest all
ifndef NO_CBLAS
ifneq ($(NO_CBLAS), 1)
$(MAKE) -C ctest all
ifeq ($(CPP_THREAD_SAFETY_TEST), 1)
$(MAKE) -C cpp_thread_test all
@@ -244,7 +244,7 @@ ifeq ($(NOFORTRAN), $(filter 0,$(NOFORTRAN)))
@$(MAKE) -C $(NETLIB_LAPACK_DIR) lapacklib
@$(MAKE) -C $(NETLIB_LAPACK_DIR) tmglib
endif
ifndef NO_LAPACKE
ifneq ($(NO_LAPACKE), 1)
@$(MAKE) -C $(NETLIB_LAPACK_DIR) lapackelib
endif
endif


+ 1
- 1
interface/Makefile View File

@@ -367,7 +367,7 @@ CZBLAS3OBJS += cblas_zgemm3m.$(SUFFIX)
endif


ifndef NO_CBLAS
ifneq ($(NO_CBLAS), 1)

override CFLAGS += -I.



Loading…
Cancel
Save