You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
439 B
15 lines
439 B
# Set options for the Intel Fortran 95 compiler - ver. 8-10 |
|
ifeq ($(FORTRAN_COMPILER),IFORT) |
|
FC=ifort |
|
DEFINES += -DFORTRAN95 |
|
can_do_F90=true |
|
F90_to_f90= |
|
MODULES=-module $(MODDIR) |
|
EXTRAS = |
|
DEBUG_FLAGS = -g -C -check -fpe0 -traceback -mp1 |
|
#PROF_FLAGS = -qp -p -O0 |
|
PROF_FLAGS = -p -O2 -mp1 |
|
PROD_FLAGS = -O3 -static-intel -mp1 |
|
OMP_FLAGS = -openmp -openmp-link static -openmp-threadprivate legacy |
|
VERSION_FLAG = --version | head -1 |
|
endif
|
|
|