diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-04-01 14:16:16 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-04-01 14:16:16 +0000 |
commit | 8d6597e0bb9591c40fc6d0c6e2159fca51178d56 (patch) | |
tree | d3548a0f08ca434f11cb4415a93d98037409413b /math/kktdirect | |
parent | a9dcad2fffcc27906b85c5a15fdb3e50fdc1e2e2 (diff) |
Notes
Diffstat (limited to 'math/kktdirect')
-rw-r--r-- | math/kktdirect/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/math/kktdirect/Makefile b/math/kktdirect/Makefile index 963a15e8ac72..d7817b6b59d1 100644 --- a/math/kktdirect/Makefile +++ b/math/kktdirect/Makefile @@ -38,16 +38,16 @@ WITH_BLAS?= reference .endif .if ${WITH_BLAS} == reference -LIB_DEPENDS+= libblas.so:${PORTSDIR}/math/blas -LIB_DEPENDS+= liblapack.so:${PORTSDIR}/math/lapack +LIB_DEPENDS+= libblas.so:math/blas +LIB_DEPENDS+= liblapack.so:math/lapack BLAS= -lblas LAPACK= -llapack .elif ${WITH_BLAS} == gotoblas -LIB_DEPENDS+= libgoto2p.so:${PORTSDIR}/math/gotoblas +LIB_DEPENDS+= libgoto2p.so:math/gotoblas BLAS= -lgoto2p LAPACK= -lgoto2p .elif ${WITH_BLAS} == atlas -LIB_DEPENDS+= libatlas.so:${PORTSDIR}/math/atlas +LIB_DEPENDS+= libatlas.so:math/atlas BLAS= -lptf77blas LAPACK= -lalapack -lptcblas .endif |