blob: a26e9ce70f9838ca356e84e2d43b72a0e5b8df2b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- Makeconf
+++ Makeconf
@@ -1,14 +1,14 @@
# set this to your compiler's executable name (e.g. gfortran, g77)
-FC=gfortran
+FC=%%FC%%
# requested flags
-FFLAGS=-fimplicit-none -O3 -funroll-loops
+FFLAGS=%%FFLAGS%%
# set if you need shared library
-FPICFLAGS=-fPIC
+FPICFLAGS=%%PICFLAG%%
# BLAS library (only required for tests)
-BLAS=-lblas
+#BLAS=-L/usr/local/lib -lblas
# LAPACK library (only required for tests)
-LAPACK=-llapack
+#LAPACK=-llapack
# Library version
VERSION=1.1
|