source: LMDZ5/trunk/bld.cfg @ 1915

Last change on this file since 1915 was 1907, checked in by lguez, 11 years ago

Added a copyright property to every file of the distribution, except
for the fcm files (which have their own copyright). Use svn propget on
a file to see the copyright. For instance:

$ svn propget copyright libf/phylmd/physiq.F90
Name of program: LMDZ
Creation date: 1984
Version: LMDZ5
License: CeCILL version 2
Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
See the license file in the root directory

Also added the files defining the CeCILL version 2 license, in French
and English, at the top of the LMDZ tree.

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
RevLine 
[808]1# ----------------------- FCM extract configuration file -----------------------
2cfg::type                           bld
3cfg::version                        1.0
4
5
6# ------------------------------------------------------------------------------
7# Build information
8# ------------------------------------------------------------------------------
9
[875]10#Default value of FPP fortran preprocessor
11%FPP cpp
[808]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
[1006]21%FFLAGS            %BASE_FFLAGS %COMPIL_FFLAGS %PARA_FFLAGS
22%LD_FLAGS          %BASE_LD %PARA_LD
[808]23
[1327]24src::dyn     %SRC_PATH/%DYN
25src::phys    %SRC_PATH/%PHYS
[1869]26#src::sisvat  %SRC_PATH/%PHYS/sisvat
[808]27src::grid    %SRC_PATH/grid
28src::filtrez %SRC_PATH/filtrez
29src::bibio   %SRC_PATH/bibio
[1327]30src::cosp    %COSP
[1545]31src::ext_src %EXT_SRC
[808]32
[1802]33bld::lib            lmdz
[808]34
35bld::outfile_ext::exe    %SUFF_NAME.e
[1802]36bld::target              liblmdz.a
[808]37bld::target              %EXEC%SUFF_NAME.e
[1802]38bld::exe_dep             
[808]39
40
41dir::root            %CONFIG_PATH
42dir::lib             %BASE_CONFIG_PATH
43dir::bin             %ROOT_PATH/bin
44
45#search_src           1
46
[875]47bld::tool::fpp       %FPP
[808]48bld::tool::fc        %COMPILER
49bld::tool::ld        %LINK
50bld::tool::ar        %AR
51bld::tool::make      %MAKE
52bld::tool::fflags    %FFLAGS %INCDIR
53bld::tool::ldflags   %LD_FLAGS %LIB 
54
55bld::tool::cppflags  %FPP_FLAGS %INCDIR
56bld::tool::fppflags  %FPP_FLAGS %INCDIR
57bld::tool::fppkeys   %CPP_KEY %FPP_DEF
58
59
[1802]60# Example of how to set specific compiling options for a specific file
61# -> this can be including in the arch.opt file
[1279]62#bld::tool::fflags::phys::readaerosol         %BASE_FFLAGS %PROD_FFLAGS  %INCDIR -C hopt -pi auto
63
64
65inc arch.opt
66
[808]67# Pre-process code before analysing dependencies
68bld::pp              1
69
70
71# Ignore the following dependencies
72bld::excl_dep        inc::netcdf.inc
73bld::excl_dep        use::netcdf
[1279]74bld::excl_dep        use::typesizes
[808]75bld::excl_dep        h::netcdf.inc
76bld::excl_dep        h::mpif.h
77bld::excl_dep        inc::mpif.h
78bld::excl_dep        use::ioipsl
79bld::excl_dep        use::intersurf
[816]80bld::excl_dep        use::mod_prism_proto
81bld::excl_dep        use::mod_prism_def_partition_proto
82bld::excl_dep        use::mod_prism_get_proto
83bld::excl_dep        use::mod_prism_put_proto
[1897]84bld::excl_dep        use::xios
85bld::excl_dep        use::iaxis
86bld::excl_dep        use::iaxis_attr
87bld::excl_dep        use::icontext_attr
88bld::excl_dep        use::idate
89bld::excl_dep        use::idomain_attr
90bld::excl_dep        use::ifield_attr
91bld::excl_dep        use::ifile_attr
92bld::excl_dep        use::ixml_tree
[1279]93
[808]94# Don't generate interface files
95bld::tool::geninterface none
96
97# Allow ".inc" as an extension for CPP include files
98bld::infile_ext::inc  CPP::INCLUDE
99
100# extension for module output
101bld::outfile_ext::mod .mod
[1425]102bld::tool::SHELL   /bin/bash
[1865]103bld::tool::SHELL   /bin/ksh
Note: See TracBrowser for help on using the repository browser.