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
395 B
15 lines
395 B
#$Id: compiler.PGF90,v 1.2 2006-03-23 12:20:57 kbk Exp $ |
|
# |
|
# Set options for the Portland Group Fortran 90 compiler. |
|
ifeq ($(FORTRAN_COMPILER),PGF90) |
|
FC=pgf90 |
|
DEFINES += -DFORTRAN90 |
|
can_do_F90=false |
|
can_do_F90=true |
|
F90_to_f90=$(FC) -E $(F90FLAGS) $(EXTRA_FFLAGS) $< > $@ |
|
MODULES=-module $(MODDIR) |
|
EXTRAS = |
|
DEBUG_FLAGS = -g -Ktrap=fp -Mbounds |
|
PROF_FLAGS = -Mprof=func |
|
PROD_FLAGS = -fast |
|
endif
|
|
|