/[lmdze]/trunk/Compiler_options/g95.mk
ViewVC logotype

Diff of /trunk/Compiler_options/g95.mk

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/Compilers/g95.mk revision 3 by guez, Wed Feb 27 13:16:39 2008 UTC trunk/Compiler_options/g95.mk revision 134 by guez, Wed Apr 29 15:47:56 2015 UTC
# Line 1  Line 1 
1  # These are machine dependent macros, meant to be included in the  # These are compiler dependent macros, meant to be included in the
2  # LMDZE makefile  # makefile for LMDZE.
3    
4  # For G95 0.91  netcdf_inc_dir = /home/guez_local/include/NetCDF_g95 /home/guez_local/include
5    netcdf_lib_dir = /home/guez_local/lib/NetCDF_g95 /home/guez_local/lib
6    
7  FC = g95  numer_rec_dir = /home/guez_local/lib/Numer_Rec_Lionel/z
8    nr_util_dir = /user/guez_local/lib/NR_util_a
9    netcdf95_dir = /home/guez_local/lib/NetCDF95/g95
10    
11  # Include flags:  # Include flags:
12  inc_flags =-I${libf_dir} -I${libf_dir}/dyn3d -I${libf_dir}/phylmd -I${libf_dir}/filtrez -I/home/guez/include -I/home/guez/lib/IOIPSL_Lionel/ac -I/home/guez/lib/Numer_Rec_Lionel/a  inc_flags = $(addprefix -I, ${libf_dir} ${libf_dir}/phylmd ${netcdf_inc_dir} ${numer_rec_dir} ${netcdf95_dir} ${nr_util_dir})
13    
14  # Other flags which do not affect run time performance:  # Other flags which do not affect run time performance:
15  lang_flags = -ffree-form -pedantic -std=f95 -Wall -Wextra -Wno=136,163,165  lang_flags = -ffree-form -pedantic -std=f95 -Wall -Wextra -Wno=136,163,165
# Line 17  lang_flags = -ffree-form -pedantic -std= Line 20  lang_flags = -ffree-form -pedantic -std=
20  # Flags which affect run time performance:  # Flags which affect run time performance:
21  perf_flags = -fbounds-check -freal=nan -ftrace=full -g -O0  perf_flags = -fbounds-check -freal=nan -ftrace=full -g -O0
22    
23  FFLAGS = ${inc_flags} ${perf_flags}  FFLAGS = ${inc_flags} ${lang_flags} ${perf_flags}
 F90FLAGS = ${inc_flags} ${lang_flags} ${perf_flags}  
24    
25  LDLIBS = -L/home/guez/lib/IOIPSL_Lionel/ac -L/home/guez/lib -L/home/guez/lib/Numer_Rec_Lionel/a -lioipsl -lnetcdff -lnetcdf -lnumer_rec  LDLIBS = $(addprefix -L, ${netcdf_lib_dir} ${numer_rec_dir} ${netcdf95_dir} ${nr_util_dir}) -lnetcdf95 -lnetcdff -lnetcdf -lnumer_rec -lnr_util

Legend:
Removed from v.3  
changed lines
  Added in v.134

  ViewVC Help
Powered by ViewVC 1.1.21