source: trunk/LMDZ.COMMON/bld.cfg @ 1540

Last change on this file since 1540 was 1540, checked in by emillour, 9 years ago

All GCMS: Further adaptations to keep up with changes in LMDZ5 concerning
physics/dynamics separation:

  • changed directory "dynlonlat_phylonlat" to "dynphy_lonlat" and adapted makelmdz and makelmdz_fcm scripts accordingly.
  • added option "-libphy" to makelmdz_fcm to just build a physics library, without any main program (not operational yet; further cleanup in the physics required).
  • moved "iniprint.h" from dyn3d_common to misc (NB: it is used in both physics and dynamics; this should be cleaned up further...)

EM

File size: 3.1 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# C preprocessor
13%CPP cpp
14
15inc arch.fcm
16inc config.fcm
17
18%CONFIG_NAME       %{ARCH}%SUFF_NAME
19%BASE_CONFIG_PATH  %LIBO/%CONFIG_NAME
20%CONFIG_PATH       %BASE_CONFIG_PATH/.config
21%SRC_PATH          %LIBF
22
23%FFLAGS            %BASE_FFLAGS %COMPIL_FFLAGS %PARA_FFLAGS
24%LD_FLAGS          %BASE_LD %PARA_LD
25
26src::dyn     %SRC_PATH/%DYN
27src::phys    %SRC_PATH/%PHYS
28src::dyn_phys %DYN_PHYS
29src::dyn_phys_sub %DYN_PHYS_SUB
30src::sisvat  %SISVAT
31src::rrtm    %RRTM
32src::grid    %SRC_PATH/grid
33src::filtrez %FILTRE
34src::misc   %SRC_PATH/misc
35src::dyn3d_common   %DYN_COMMON
36src::phy_common %PHY_COMMON
37src::cosp    %COSP
38src::chem    %CHEM
39src::aerono  %AERONO
40
41bld::lib            lmdz
42
43
44bld::outfile_ext::exe    %SUFF_NAME
45bld::target              liblmdz.a %EXEC%SUFF_NAME
46bld::exe_dep             
47
48
49dir::root            %CONFIG_PATH
50#dir::lib             %BASE_CONFIG_PATH
51dir::bin             %ROOT_PATH/bin
52
53#search_src           1
54
55bld::tool::fpp       %FPP
56bld::tool::cpp       %CPP
57bld::tool::fc        %COMPILER
58bld::tool::cc        %C_COMPILER
59bld::tool::ld        %LINK
60bld::tool::ar        %AR
61bld::tool::make      %MAKE
62bld::tool::fflags    %FFLAGS %INCDIR
63bld::tool::cflags    %C_OPTIM %INCDIR
64bld::tool::ldflags   %LD_FLAGS %LIB 
65
66bld::tool::cppflags  %CPP_FLAGS %INCDIR
67bld::tool::fppflags  %FPP_FLAGS %INCDIR
68bld::tool::fppkeys   %CPP_KEY %FPP_DEF
69
70# Example of how to set specific compiling options for a specific file
71# -> this can be including in the arch.opt file
72#bld::tool::fflags::phys::readaerosol         %BASE_FFLAGS %PROD_FFLAGS  %INCDIR -C hopt -pi auto
73
74
75inc arch.opt
76
77# Pre-process code before analysing dependencies
78bld::pp              1
79
80# Ignore the following dependencies
81bld::excl_dep        inc::netcdf.inc
82bld::excl_dep        use::netcdf
83bld::excl_dep        use::typesizes
84bld::excl_dep        h::netcdf.inc
85bld::excl_dep        h::mpif.h
86bld::excl_dep        inc::mpif.h
87bld::excl_dep        use::ioipsl
88bld::excl_dep        use::intersurf
89bld::excl_dep        use::mod_prism_proto
90bld::excl_dep        use::mod_prism_def_partition_proto
91bld::excl_dep        use::mod_prism_get_proto
92bld::excl_dep        use::mod_prism_put_proto
93bld::excl_dep        use::mod_prism
94bld::excl_dep        use::xios
95bld::excl_dep        use::iaxis
96bld::excl_dep        use::iaxis_attr
97bld::excl_dep        use::icontext_attr
98bld::excl_dep        use::idate
99bld::excl_dep        use::idomain_attr
100bld::excl_dep        use::ifield_attr
101bld::excl_dep        use::ifile_attr
102bld::excl_dep        use::ixml_tree
103
104# Don't generate interface files
105bld::tool::geninterface none
106
107# Allow ".inc" as an extension for CPP include files
108bld::infile_ext::inc  CPP::INCLUDE
109
110# extension for module output
111bld::outfile_ext::mod .mod
112bld::tool::SHELL   /bin/bash
Note: See TracBrowser for help on using the repository browser.