File: Makeconf

package info (click to toggle)
qrupdate 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 504 kB
  • ctags: 233
  • sloc: fortran: 3,905; makefile: 113; perl: 17; sh: 13
file content (20 lines) | stat: -rw-r--r-- 430 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# set this to your compiler's executable name (e.g. gfortran, g77)
FC=gfortran
# requested flags
FFLAGS=-fimplicit-none -O3 -funroll-loops 
# set if you need shared library
FPICFLAGS=-fPIC

# BLAS library (only required for tests)
BLAS=-lblas
# LAPACK library (only required for tests)
LAPACK=-llapack

# Library version
VERSION=1.0
MAJOR=1

# set default prefix to /usr/local
ifeq ($(strip $(PREFIX)),)
  PREFIX=/usr/local
endif