/[lmdze]/trunk/Compilers/pgf95.mk
ViewVC logotype

Annotation of /trunk/Compilers/pgf95.mk

Parent Directory Parent Directory | Revision Log Revision Log


Revision 27 - (hide annotations)
Thu Mar 25 14:29:07 2010 UTC (14 years, 2 months ago) by guez
File size: 1027 byte(s)
"dyn3d" and "filtrez" do not contain any included file so make rules
have been updated.

"comdissip.f90" was useless, removed it.

"dynredem0" wrote undefined value in "controle(31)", that was
overwritten by "dynredem1". Now "dynredem0" just writes 0 to
"controle(31)".

Removed arguments of "inidissip". "inidissip" now accesses the
variables by use association.

In program "etat0_lim", "itaufin" is not defined so "dynredem1" wrote
undefined value to "controle(31)". Added argument "itau" of
"dynredem1" to correct that.

"itaufin" does not need to be a module variable (of "temps"), made it
a local variable of "leapfrog".

Removed calls to "diagedyn" from "leapfrog".

1 guez 27 # These are compiler dependent macros, meant to be included in the
2     # makefile for LMDZE.
3 guez 3
4 guez 27 # For pgf95 version 6
5 guez 3
6     FC = pgf95
7    
8 guez 27 netcdf_inc_dir = /usr/local/netcdf-pgi/include
9     netcdf_lib_dir = /usr/local/netcdf-pgi/lib
10    
11     numer_rec_dir = /home/guez_local/lib/Numer_Rec_Lionel/o
12     netcdf95_dir = /home/guez_local/lib/NetCDF95/pgf95
13     IOIPSL_dir = /home/guez_local/lib/IOIPSL_Lionel/ad
14    
15 guez 3 # Include flags:
16 guez 27 inc_flags = $(addprefix -I, ${libf_dir} ${libf_dir}/phylmd ${netcdf_inc_dir} ${numer_rec_dir} ${netcdf95_dir} ${IOIPSL_dir})
17 guez 3
18     # Other flags which do not affect run time performance:
19 guez 27 lang_flags = -Mstandard -Minform=inform -Mfree -Minfo=all -Mallocatable=95 -Mbackslash
20 guez 3
21     # Flags which affect run time performance:
22 guez 27 perf_flags = -g -Kieee -Ktrap=fp -Mbounds -Mchkfpstk -Mchkptr -Mpgicoff
23     ##-fastsse -O3
24 guez 3
25     FFLAGS = ${inc_flags} ${perf_flags}
26     F90FLAGS = ${inc_flags} ${lang_flags} ${perf_flags}
27 guez 27 LDFLAGS = -g
28 guez 3
29 guez 27 LDLIBS = $(addprefix -L, ${netcdf_lib_dir} ${numer_rec_dir} ${netcdf95_dir} ${IOIPSL_dir}) -lioipsl -lnetcdf95 -lnetcdf -lnumer_rec

  ViewVC Help
Powered by ViewVC 1.1.21