diff options
author | maho <maho@FreeBSD.org> | 2007-09-04 16:49:43 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2007-09-04 16:49:43 +0800 |
commit | 300e660c31c376c4f25fe027b4125f7f5034d3d0 (patch) | |
tree | 7c079d67b6adc684e7194cf1b228f0981a2d48c5 /math/lapack95/files | |
parent | 4d1e28942f364a3b5b6bf21d748902ebcc556683 (diff) | |
download | freebsd-ports-gnome-300e660c31c376c4f25fe027b4125f7f5034d3d0.tar.gz freebsd-ports-gnome-300e660c31c376c4f25fe027b4125f7f5034d3d0.tar.zst freebsd-ports-gnome-300e660c31c376c4f25fe027b4125f7f5034d3d0.zip |
* Installation of mod files.
* make.inc in example dir has been changed for slightly better one.
Spotted by: Anton Shterenlikht <mexas@bristol.ac.uk>
Diffstat (limited to 'math/lapack95/files')
-rw-r--r-- | math/lapack95/files/patch-make.inc | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/math/lapack95/files/patch-make.inc b/math/lapack95/files/patch-make.inc index e97b0712696a..7fcdc32169b9 100644 --- a/math/lapack95/files/patch-make.inc +++ b/math/lapack95/files/patch-make.inc @@ -1,5 +1,5 @@ --- make.inc.orig Thu Nov 30 22:18:37 2000 -+++ make.inc Wed Jan 10 09:31:14 2007 ++++ make.inc Tue Sep 4 17:20:52 2007 @@ -3,8 +3,8 @@ # UNI-C, Denmark; Univ. of Tennessee, USA; NAG Ltd., UK # August 5, 2000 @@ -11,27 +11,32 @@ # -dcfuns Enable recognition of non-standard double # precision complex intrinsic functions # -dusty Allows the compilation and execution of "legacy" -@@ -13,19 +13,19 @@ +@@ -13,21 +13,21 @@ # -ieee=full enables all IEEE arithmetic facilities # including non-stop arithmetic. -OPTS0 = -u -V -dcfuns -dusty -ieee=full +-MODLIB = -I./../lapack95_modules +OPTS0 = %%FFLAGS%% #-u -V -dcfuns -dusty -ieee=full - MODLIB = -I./../lapack95_modules ++MODLIB = -I./../lapack95_modules -I%%PREFIX%%/lib/lapack95_modules OPTS1 = -c $(OPTS0) OPTS3 = $(OPTS1) $(MODLIB) OPTL = -o OPTLIB = -LAPACK_PATH = /usr/local/lib/LAPACK3/ -+LAPACK_PATH = -L%%LOCALBASE%%/lib ++LAPACK_PATH = -L%%LOCALBASE%%/lib -L%%PREFIX%%/lib - LAPACK95 = ../lapack95.a +-LAPACK95 = ../lapack95.a -LAPACK77 = $(LAPACK_PATH)/lapack.a -+LAPACK77 = -llapack ++LAPACK95 = -llapack95 ++LAPACK77 = %%LAPACK%% TMG77 = $(LAPACK_PATH)/tmglib.a -BLAS = $(LAPACK_PATH)/blas.a -+BLAS = -lblas ++BLAS = %%BLAS%% - LIBS = $(LAPACK95) $(TMG77) $(LAPACK77) $(BLAS) +-LIBS = $(LAPACK95) $(TMG77) $(LAPACK77) $(BLAS) ++LIBS = $(LAPACK_PATH) $(LAPACK95) $(LAPACK77) $(BLAS) SUF = f90 + + XX = 'rm' -f $@; \ |