blob: 1e09f006e217e7343b23331c1bc79e1f4a3e96ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: Makefile,v 1.1 2021/06/15 04:41:52 thor Exp $
MAINTAINER= thomas.orgis@uni-hamburg.de
COMMENT= C interface to the reference BLAS with 64 bit indices
LAPACK_COMPONENT= cblas64
LAPACK_COMPONENT_CMAKE_ARGS= \
-DBUILD_INDEX64=ON \
-DUSE_OPTIMIZED_BLAS=ON \
-DBLAS_LIBRARIES=-lblas64 \
-DCBLAS=ON -DLAPACKE=OFF -DLAPACK=OFF \
-DCMAKE_VERBOSE=ON
.include "../../math/blas64/buildlink3.mk"
.include "../../math/lapack/Makefile.common"
.include "../../mk/bsd.pkg.mk"
|