source: branches/publications/ORCHIDEE_GLUC_r6545/bld.cfg @ 6737

Last change on this file since 6737 was 3770, checked in by albert.jornet, 8 years ago

Clean: use mpi is a better approach for Fortran 90. Include statement is used for Fortran 77.
Clean: add stomate_accu for 1, 2 and 3 dimensions. It deletes all warnings related to -check all compilation flag
Clean: useless altcalc variable type casting. It deletes all warnings related to -check all compilation flag
Clean: hsdeep_daily min check is done outside the subroutine call deep_carbcycle. It deletes all warnings related to -check all compilation flag
Fix: crop related variables are now always allocated. Those are passed to Stics_init or writerestart even if its module is not active.

File size: 2.5 KB
Line 
1# ----------------------- FCM extract configuration file -----------------------
2cfg::type                           bld
3cfg::version                        1.0
4
5
6# ------------------------------------------------------------------------------
7# Build information
8# ------------------------------------------------------------------------------
9
10
11inc arch.fcm
12inc config.fcm
13
14%ROOT_PATH         $PWD
15%CONFIG_PATH       %ROOT_PATH/.config
16%SRC_PATH          %ROOT_PATH
17
18
19src::global       %SRC_PATH/src_global
20src::parallel     %SRC_PATH/src_parallel
21src::sechiba      %SRC_PATH/src_sechiba
22src::stomate      %SRC_PATH/src_stomate
23src::parameters   %SRC_PATH/src_parameters
24src::sticslai     %SRC_PATH/src_sticslai
25src::orchidee_ol  %SRC_PATH/src_driver
26src::orchoasis    %SRC_PATH/src_oasisdriver
27src::ext_src      %EXT_SRC
28
29bld::lib::global         orglob
30bld::lib::parallel       parallel
31bld::lib::sechiba        sechiba
32bld::lib::stomate        stomate
33bld::lib::parameters     parameters
34bld::lib::sticslai       sticslai
35bld::lib::orchidee_ol    orchidee_ol
36bld::lib::orchoasis      orchoasis
37bld::lib                 orchidee
38
39bld::target              liborglob.a libparallel.a libsechiba.a libstomate.a libparameters.a libsticslai.a liborchidee.a
40bld::target              %EXEC
41bld::exe_dep             sticslai ext_src global parallel sechiba stomate parameters orchidee_ol orchoasis
42
43dir::root            %CONFIG_PATH
44dir::lib             %ROOT_PATH/lib
45dir::bin             %ROOT_PATH/bin
46dir::inc             %ROOT_PATH/lib
47dir::tmp             %ROOT_PATH/tmp_src
48
49#search_src           1
50
51bld::tool::fc        %COMPILER 
52bld::tool::ld        %LINK
53bld::tool::ar        %AR
54bld::tool::make      %MAKE
55bld::tool::fflags    %FFLAGS %INCDIR
56bld::tool::ldflags   %LD_FFLAGS %LIBDIR -lioipsl -lnetcdf   
57
58bld::tool::cppflags  %FPP_FLAGS %INCDIR
59bld::tool::fppflags  %FPP_FLAGS %INCDIR
60bld::tool::fppkeys   %CPP_KEY
61
62
63# Pre-process code before analysing dependencies
64bld::pp              1
65infile_ext::f90 fpp::fpp9x::source
66
67# Ignore the following dependencies
68bld::excl_dep        inc::netcdf.inc
69bld::excl_dep        use::netcdf
70bld::excl_dep        h::netcdf.inc
71bld::excl_dep        use::ioipsl
72bld::excl_dep        USE::defprec
73bld::excl_dep        USE::calendar
74bld::excl_dep        USE::xios
75bld::excl_dep        USE::mod_oasis
76bld::excl_dep        USE::mpi
77
78# Don't generate interface files
79bld::tool::geninterface none
80
81# Allow ".inc" as an extension for CPP include files
82bld::infile_ext::inc  CPP::INCLUDE
83
84# extension for module output
85bld::outfile_ext::mod .mod
86bld::tool::SHELL   /bin/bash
Note: See TracBrowser for help on using the repository browser.