1 | # ----------------------- FCM extract configuration file ----------------------- |
---|
2 | cfg::type bld |
---|
3 | cfg::version 1.0 |
---|
4 | |
---|
5 | |
---|
6 | # ------------------------------------------------------------------------------ |
---|
7 | # Build information |
---|
8 | # ------------------------------------------------------------------------------ |
---|
9 | |
---|
10 | inc $COMPIL_DIR/arch_nemo.fcm |
---|
11 | inc $COMPIL_DIR/cpp.fcm |
---|
12 | |
---|
13 | search_src 1 |
---|
14 | |
---|
15 | src::ioipsl $MAIN_DIR/EXTERNAL/IOIPSL/src |
---|
16 | src::agrif $MAIN_DIR/EXTERNAL/AGRIF/AGRIF_FILES |
---|
17 | src::nemo $CONFIG_DIR/$NEW_CONF/WORK |
---|
18 | |
---|
19 | bld::target nemo.exe |
---|
20 | bld::exe_dep |
---|
21 | |
---|
22 | |
---|
23 | dir::root $NEMO_TDIR/$NEW_CONF/BLD |
---|
24 | |
---|
25 | bld::tool::fc %FC |
---|
26 | bld::tool::fflags %FCFLAGS %USER_INC |
---|
27 | bld::tool::fflags::agrif %FFLAGS %USER_INC |
---|
28 | bld::tool::ld %LD |
---|
29 | bld::tool::ldflags %LDFLAGS %USER_LIB |
---|
30 | bld::tool::ar %AR |
---|
31 | bld::tool::arflags %ARFLAGS |
---|
32 | bld::tool::make %MK |
---|
33 | |
---|
34 | # Pre-process code before analysing dependencies |
---|
35 | bld::pp::ioipsl 1 |
---|
36 | bld::pp::nemo 1 |
---|
37 | bld::pp::agrif 1 |
---|
38 | bld::tool::fpp $COMPIL_DIR/agrifpp.sh |
---|
39 | bld::tool::fppflags::nemo ${AGRIFUSE} %FPPFLAGS |
---|
40 | bld::tool::fppflags::ioipsl 0 %FPPFLAGS |
---|
41 | bld::tool::fppflags::agrif 0 %FPPFLAGS |
---|
42 | |
---|
43 | # Ignore the following dependencies |
---|
44 | bld::excl_dep inc::netcdf.inc |
---|
45 | bld::excl_dep inc::VT.inc |
---|
46 | bld::excl_dep use::netcdf |
---|
47 | bld::excl_dep use::xios |
---|
48 | bld::excl_dep h::netcdf.inc |
---|
49 | bld::excl_dep h::mpif.h |
---|
50 | bld::excl_dep inc::mpif.h |
---|
51 | bld::excl_dep inc::mpe_logf.h |
---|
52 | bld::excl_dep use::mpi |
---|
53 | bld::excl_dep use::mod_prism_proto |
---|
54 | bld::excl_dep use::mod_prism_def_partition_proto |
---|
55 | bld::excl_dep use::mod_prism_get_comm |
---|
56 | bld::excl_dep use::mod_prism_get_proto |
---|
57 | bld::excl_dep use::mod_prism_put_proto |
---|
58 | bld::excl_dep use::mod_comprism_proto |
---|
59 | bld::excl_dep use::mkl_dfti |
---|
60 | # Don't generate interface files |
---|
61 | bld::tool::geninterface none |
---|
62 | |
---|
63 | # Allow ".h90" as an extension for CPP include files |
---|
64 | bld::infile_ext::h90 CPP::INCLUDE |
---|
65 | |
---|
66 | # extension for module output |
---|
67 | bld::outfile_ext::mod .mod |
---|
68 | |
---|
69 | # rename executable to nemo.exe |
---|
70 | bld::exe_name::model nemo.exe |
---|
71 | |
---|