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.
18 lines
444 B
18 lines
444 B
#$Id: compiler.IFC,v 1.2 2006-03-23 12:20:57 kbk Exp $ |
|
# |
|
# Set options for the Intel Fortran 95 compiler. |
|
ifeq ($(FORTRAN_COMPILER),IFC) |
|
FC=/opt/lam-6.5.9/bin/mpif77 |
|
FC=ifc |
|
DEFINES += -DFORTRAN95 |
|
can_do_F90=true |
|
F90_to_f90=$(FC) -E $(F90FLAGS) $(EXTRA_FFLAGS) $< > $@ |
|
F90_to_f90= |
|
MODULES= |
|
MODULES=-module $(MODDIR) |
|
EXTRAS = -w95 -e95 -static |
|
DEBUG_FLAGS = -g -C |
|
PROF_FLAGS = -qp -p |
|
PROD_FLAGS = -O3 -mp |
|
SYS_LIBS += -lPEPCF90 -lpthread |
|
endif
|
|
|