mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
51 lines
1.5 KiB
Text
51 lines
1.5 KiB
Text
# 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
|