Files
OpenBLAS/lapack-netlib/BLAS/Makefile
Martin Kroeker 375b1875c8 [WIP] Update LAPACK to 3.9.0 (#2353)
* Update make.inc entries for LAPACK 3.9.0

Reference-LAPACK PR 347 changed some variable names and relative paths

* Update LAPACK to 3.9.0

* Add new functions from LAPACK 3.9.0

* Add new functions from LAPACK 3.9.0

* Restore LOADER command 

as it makes it easier to specify pthread as needed

* Restore LOADER

* Restore EIG/LIN prefixes in cmdbase

* add binary path to lapack_testing.py call

* Restore OpenMP version check

* Restore OpenMP version check

* Restore fix for out-of-bounds array accesses

from #2096
2020-01-01 13:18:53 +01:00

28 lines
455 B
Makefile

TOPSRCDIR = ..
include $(TOPSRCDIR)/make.inc
.PHONY: all
all: blas
.PHONY: blas
blas:
$(MAKE) -C SRC
.PHONY: blas_testing
blas_testing: blas
$(MAKE) -C TESTING run
.PHONY: clean cleanobj cleanlib cleanexe cleantest
clean:
$(MAKE) -C SRC clean
$(MAKE) -C TESTING clean
cleanobj:
$(MAKE) -C SRC cleanobj
$(MAKE) -C TESTING cleanobj
cleanlib:
$(MAKE) -C SRC cleanlib
cleanexe:
$(MAKE) -C TESTING cleanexe
cleantest:
$(MAKE) -C TESTING cleantest