diff options
Diffstat (limited to 'cad/tochnog/Makefile')
-rw-r--r-- | cad/tochnog/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cad/tochnog/Makefile b/cad/tochnog/Makefile index 23990bf4be5d..9d9ce50dfaba 100644 --- a/cad/tochnog/Makefile +++ b/cad/tochnog/Makefile @@ -15,7 +15,7 @@ COMMENT= Free explicit/implicit Finite Element Program LICENSE= GPLv2 -BUILD_DEPENDS= ${LOCALBASE}/lib/libf2c.a:${PORTSDIR}/lang/f2c +BUILD_DEPENDS= ${LOCALBASE}/lib/libf2c.a:lang/f2c OPTIONS_DEFINE= ATLAS EXAMPLES THREADS ATLAS_DESC= Use ATLAS instead of BLAS/LAPACK @@ -36,25 +36,25 @@ GID_PTYPES= ${PREFIX}/${GIDDIR}/problemtypes .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MATLAS} -LIB_DEPENDS+= libatlas.so:${PORTSDIR}/math/atlas +LIB_DEPENDS+= libatlas.so:math/atlas .if ${PORT_OPTIONS:MTHREADS} BLAS_LIBS= -lptf77blas .else BLAS_LIBS= -lf77blas .endif .else -LIB_DEPENDS+= libblas.so:${PORTSDIR}/math/blas \ - liblapack.so:${PORTSDIR}/math/lapack +LIB_DEPENDS+= libblas.so:math/blas \ + liblapack.so:math/lapack BLAS_LIBS= -llapack -lblas .endif .if ${PORT_OPTIONS:MTHREADS} ALL_TARGET= freebsd_parallel -LIB_DEPENDS+= libsuperlu_mt.so:${PORTSDIR}/math/superlu_mt +LIB_DEPENDS+= libsuperlu_mt.so:math/superlu_mt SUPERLU= superlu_mt .else ALL_TARGET= freebsd_old -LIB_DEPENDS+= libsuperlu.so:${PORTSDIR}/math/superlu +LIB_DEPENDS+= libsuperlu.so:math/superlu SUPERLU= superlu .endif |