mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 05:40:30 -04:00
According to http://www.netlib.org/lapack/lapack-3.1.0.changes > The interfaces to primary computational routines are fixed and > will not be changed by minor LAPACK versions (e.g. 3.x). > Primary routines are those prefixed by a precision and matrix > type like SGERFS, CUNMQR, ZHEGV, etc., and these interfaces > will remain the same for all LAPACK version 3 versions. So I didn't change the version number of shared lib. See also PR: 116166
14 lines
346 B
Text
14 lines
346 B
Text
--- Makefile 2007-09-29 10:36:38.000000000 +0900
|
|
+++ Makefile 2007-09-29 10:38:25.000000000 +0900
|
|
@@ -7,7 +7,11 @@
|
|
include make.inc
|
|
|
|
|
|
+.if defined(ENABLE_TESTING) && ${ENABLE_TESTING} == "YES"
|
|
all: lapack_install lib lapack_testing blas_testing
|
|
+.else
|
|
+all: lapack_install lib
|
|
+.endif
|
|
|
|
lib: lapacklib tmglib
|
|
#lib: blaslib lapacklib tmglib
|