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
349 B
14 lines
349 B
#$Id: compiler.FUJITSU,v 1.2 2006-03-23 12:20:57 kbk Exp $ |
|
# |
|
# Set options for the Fujitsu compiler - on Linux/Intel and SunOS. |
|
ifeq ($(FORTRAN_COMPILER),FUJITSU) |
|
FC=frt |
|
can_do_F90=true |
|
DEFINES += -DFORTRAN95 |
|
MODULES=-Am -M$(MODDIR) |
|
EXTRAS = -ml=cdecl -fw |
|
EXTRAS = -fw |
|
DEBUG_FLAGS = -g -H aeus |
|
PROF_FLAGS = -pg -O3 |
|
PROD_FLAGS = -O -K fast |
|
endif
|
|
|