# 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.1
MAJOR=1

# The default library dir
LIBDIR=lib

# Destination installation offset
DESTDIR=

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