diff options
author | Maho Nakata <maho@FreeBSD.org> | 2007-07-14 21:36:44 +0000 |
---|---|---|
committer | Maho Nakata <maho@FreeBSD.org> | 2007-07-14 21:36:44 +0000 |
commit | 4aa4a61177b92387fed45fac4a08f8e68292c559 (patch) | |
tree | d1633fc1f35f26950ccac1d220f056fe15e892f8 /benchmarks | |
parent | 6b0c72f87f5298ff56ef417fb0045e46472a3293 (diff) | |
download | ports-4aa4a61177b92387fed45fac4a08f8e68292c559.tar.gz ports-4aa4a61177b92387fed45fac4a08f8e68292c559.zip |
Notes
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/himenobench/Makefile | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/benchmarks/himenobench/Makefile b/benchmarks/himenobench/Makefile index 1dadd07c4c6d..f3e548023b45 100644 --- a/benchmarks/himenobench/Makefile +++ b/benchmarks/himenobench/Makefile @@ -21,15 +21,11 @@ COMMENT= Himeno bench benchmark, solves Poisson eq. with Jacobi's method BUILD_DEPENDS= ${LOCALBASE}/intel_cc_80/bin/icc:${PORTSDIR}/lang/icc .endif .if defined(WITH_IFC) -BUILD_DEPENDS= ${LOCALBASE}/intel_fc_80/bin/ifort:${PORTSDIR}/lang/ifc +USE_FORTRAN= ifort .endif EXTRACT_DEPENDS= lha:${PORTSDIR}/archivers/lha -#use gfortran -WANT_FORTRAN= yes #dummy but future use -BUILD_DEPENDS+= gfortran42:${PORTSDIR}/lang/gcc42 -FC= gfortran42 -F77= gfortran42 +USE_FORTRAN= yes GCCVER:= ${USE_GCC:S/+//} @@ -55,7 +51,7 @@ PLIST_SUB+= WITH_IFC="" PLIST_SUB+= WITH_IFC="@comment " .endif -.if ${GCCVER} < 4.2 +.if ${USE_FORTRAN} == yes PLIST_SUB+= WITH_GFORTRAN="@comment " .else PLIST_SUB+= WITH_GFORTRAN="" @@ -67,7 +63,7 @@ do-extract: cd ${WRKSRC} ; lha xf ${DISTDIR}/${DIST_SUBDIR}/$$i; \ done do-build: -.if ${GCCVER} >= 4.2 +.if ${USE_FORTRAN} == yes cd ${WRKSRC} ; ${FC} ${FFLAGS} -o himenobmtxp himenobmtxp.f90 .endif # cd ${WRKSRC} ; ${FC} ${FFLAGS} -o himenobmtxp_xl himenobmtxp_xl.f #Too large @@ -97,7 +93,7 @@ do-build: .endif do-install: # ${INSTALL_PROGRAM} ${WRKSRC}/himenobmtxp_xl ${PREFIX}/bin #Too large -.if ${GCCVER} >= 4.2 +.if ${USE_FORTRAN} == yes @${INSTALL_PROGRAM} ${WRKSRC}/himenobmtxp ${PREFIX}/bin .endif @${INSTALL_PROGRAM} ${WRKSRC}/himenobmtxp_l ${PREFIX}/bin |