source: LMDZ4/branches/LMDZ4-dev/bld.cfg @ 1154

Last change on this file since 1154 was 1154, checked in by lguez, 15 years ago

-- Added "NetCDF95" interface in "bibio".
-- NetCDF95 uses the module "typesizes", which is part of NetCDF, so we
exclude dependency on "typesizes" in "bld.cfg".
-- Added "assert_eq" and "assert" procedures, which are in the public
part of Numerical Recipes.
-- Added some interpolation and regridding utilities in "bibio".
-- Added the ability to read an ozone climatology from a NetCDF file.
-- Commented out unused variables and code in "etat0_netcdf".
-- Updated calls to NetCDF in "etat0_netcdf": from Fortran 77
interface to Fortran 90 interface.
-- Removed useless "deallocate" at the end of "etat0_netcdf".
-- Corrected some declarations not conforming to Fortran standard, such
as "integer*4", or obsolescent such as "character*4".
-- Replaced some calls to not-standard function "float" by calls to
"real".
-- On Brodie at IDRIS, the NetCDF library compiled with OpenMP should
be used. Changed path in "arch-SX8_BRODIE.path".
-- Added warning for incompatibility of debugging options and OpenMP
parallelization in "makelmdz_fcm".

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1# ----------------------- FCM extract configuration file -----------------------
2cfg::type                           bld
3cfg::version                        1.0
4
5
6# ------------------------------------------------------------------------------
7# Build information
8# ------------------------------------------------------------------------------
9
10#Default value of FPP fortran preprocessor
11%FPP cpp
12
13inc arch.fcm
14inc config.fcm
15
16%CONFIG_NAME       %{ARCH}%SUFF_NAME
17%BASE_CONFIG_PATH  %LIBO/%CONFIG_NAME
18%CONFIG_PATH       %BASE_CONFIG_PATH/.config
19%SRC_PATH          %LIBF
20
21%FFLAGS            %BASE_FFLAGS %COMPIL_FFLAGS %PARA_FFLAGS
22%LD_FLAGS          %BASE_LD %PARA_LD
23
24src::dyn    %SRC_PATH/%DYN
25src::phys   %SRC_PATH/%PHYS
26src::grid    %SRC_PATH/grid
27src::filtrez %SRC_PATH/filtrez
28src::bibio   %SRC_PATH/bibio
29
30bld::lib::dyn      %DYN
31bld::lib::phys     %PHYS
32bld::lib::grid      grid
33bld::lib::filtrez   filtrez
34bld::lib::bibio     bibio
35
36
37bld::outfile_ext::exe    %SUFF_NAME.e
38bld::target              lib%{DYN}.a lib%{PHYS}.a libgrid.a libfiltrez.a libbibio.a
39bld::target              %EXEC%SUFF_NAME.e
40bld::exe_dep             %{DYN} %{PHYS} grid filtrez bibio
41
42
43dir::root            %CONFIG_PATH
44dir::lib             %BASE_CONFIG_PATH
45dir::bin             %ROOT_PATH/bin
46
47#search_src           1
48
49bld::tool::fpp       %FPP
50bld::tool::fc        %COMPILER
51bld::tool::ld        %LINK
52bld::tool::ar        %AR
53bld::tool::make      %MAKE
54bld::tool::fflags    %FFLAGS %INCDIR
55bld::tool::ldflags   %LD_FLAGS %LIB 
56
57bld::tool::cppflags  %FPP_FLAGS %INCDIR
58bld::tool::fppflags  %FPP_FLAGS %INCDIR
59bld::tool::fppkeys   %CPP_KEY %FPP_DEF
60
61
62# Pre-process code before analysing dependencies
63bld::pp              1
64
65
66# Ignore the following dependencies
67bld::excl_dep        inc::netcdf.inc
68bld::excl_dep        use::netcdf
69bld::excl_dep        use::typesizes
70bld::excl_dep        h::netcdf.inc
71bld::excl_dep        h::mpif.h
72bld::excl_dep        inc::mpif.h
73bld::excl_dep        use::ioipsl
74bld::excl_dep        use::intersurf
75bld::excl_dep        use::mod_prism_proto
76bld::excl_dep        use::mod_prism_def_partition_proto
77bld::excl_dep        use::mod_prism_get_proto
78bld::excl_dep        use::mod_prism_put_proto
79bld::excl_dep        use::mkl_dfti
80
81# Don't generate interface files
82bld::tool::geninterface none
83
84# Allow ".inc" as an extension for CPP include files
85bld::infile_ext::inc  CPP::INCLUDE
86
87# extension for module output
88bld::outfile_ext::mod .mod
Note: See TracBrowser for help on using the repository browser.