diff options
author | lesibel <lesibel@free.fr> | 2009-11-10 14:45:09 +0100 |
---|---|---|
committer | lesibel <lesibel@free.fr> | 2009-11-10 14:45:09 +0100 |
commit | 92ddc722c5c74e8ab9bf0a78033b209560a736fd (patch) | |
tree | 5d74226f213a626ad81835077d5d2429709ee687 /extra/lapack/make.inc.archlinux | |
parent | a2154e3ce1ac8b97c6cd6b738803b7e922c56eba (diff) | |
download | nutyx-pakxe-92ddc722c5c74e8ab9bf0a78033b209560a736fd.tar.gz nutyx-pakxe-92ddc722c5c74e8ab9bf0a78033b209560a736fd.tar.bz2 nutyx-pakxe-92ddc722c5c74e8ab9bf0a78033b209560a736fd.tar.xz nutyx-pakxe-92ddc722c5c74e8ab9bf0a78033b209560a736fd.zip |
Ajout de lapack#3.2.1-1
Diffstat (limited to 'extra/lapack/make.inc.archlinux')
-rw-r--r-- | extra/lapack/make.inc.archlinux | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/extra/lapack/make.inc.archlinux b/extra/lapack/make.inc.archlinux new file mode 100644 index 000000000..a26a8cde1 --- /dev/null +++ b/extra/lapack/make.inc.archlinux @@ -0,0 +1,51 @@ +# make include file addapted for archlinux - damir@archlinux.org 20061212 +#################################################################### +# LAPACK make include file. # +# LAPACK, Version 3.0 # +# June 30, 1999 # +#################################################################### +# +# See the INSTALL/ directory for more examples. +# +SHELL = /bin/sh +# +# The machine (platform) identifier to append to the library names +# +PLAT = +# +# Modify the FORTRAN and OPTS definitions to refer to the +# compiler and desired compiler options for your machine. NOOPT +# refers to the compiler options desired when NO OPTIMIZATION is +# selected. Define LOADER and LOADOPTS to refer to the loader and +# desired load options for your machine. +# +FORTRAN = gfortran +OPTS = -O2 +DRVOPTS = $(OPTS) +NOOPT = -O0 +LOADER = gfortran +LOADOPTS = +# +# Timer for the SECOND and DSECND routines +# +TIMER = INT_ETIME +# +# The archiver and the flag(s) to use when building archive (library) +# If you system has no ranlib, set RANLIB = echo. +# +ARCH = gfortran +# ar +ARCHFLAGS= -shared -o +# cr +RANLIB = echo +# ranlib +# +# The location of the libraries to which you will link. (The +# machine-specific, optimized BLAS library should be used whenever +# possible.) +# +BLASLIB = -lblas +LAPACKLIB = liblapack.so.3 +TMGLIB = libtmglib.so.3 +EIGSRCLIB = libeigsrc.so.3 +LINSRCLIB = liblinsrc.so.3 |