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.
14 lines
324 B
14 lines
324 B
# Set options for the CRAY Fortran compiler |
|
ifeq ($(FORTRAN_COMPILER),FTN) |
|
FC=ftn |
|
DEFINES += -DFORTRAN95 |
|
can_do_F90=true |
|
F90_to_f90= |
|
MODULES= -em -J$(MODDIR) |
|
EXTRAS = |
|
DEBUG_FLAGS = -eD -efp0 -xomp |
|
PROF_FLAGS = -xomp |
|
PROD_FLAGS = -O3 -Ovector3 -Oautothread -xomp |
|
OMP_FLAGS = -Oomp |
|
VERSION_FLAG = -V 2>&1 | tail -1 |
|
endif
|
|
|