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.
 
 
 
 
 
 

13 lines
293 B

#$Id: compiler.NAG,v 1.2 2006-03-23 12:20:57 kbk Exp $
#
# Set options for the NAG Fortran compiler.
ifeq ($(FORTRAN_COMPILER),NAG)
FC=f95nag
DEFINES += -DFORTRAN95
can_do_F90=true
MODULES=-mdir $(MODDIR)
EXTRAS = -f77
DEBUG_FLAGS = -g -C=all -O0
PROF_FLAGS = -pg -O3
PROD_FLAGS = -O3
endif