Update LAPACK to 3.9.0

This commit is contained in:
Martin Kroeker 2019-12-29 18:30:23 +01:00 committed by GitHub
parent 82e45b23e6
commit 6f2f065471
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -6,4 +6,5 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/blas.pc.in ${CMAKE_CURRENT_BINARY_DIR
install(FILES install(FILES
${CMAKE_CURRENT_BINARY_DIR}/blas.pc ${CMAKE_CURRENT_BINARY_DIR}/blas.pc
DESTINATION ${PKG_CONFIG_DIR} DESTINATION ${PKG_CONFIG_DIR}
COMPONENT Development
) )

View File

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