New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
agrifpp.sh in utils/build/mk_AGRIF_CMEMS_2020 – NEMO

source: utils/build/mk_AGRIF_CMEMS_2020/agrifpp.sh @ 10449

Last change on this file since 10449 was 9573, checked in by nicolasmartin, 6 years ago

Global renaming for compilation scripts (./TOOLS/COMPILE): tools scripts have been modified but not been tested

  • Property svn:executable set to *
File size: 1.2 KB
Line 
1#!/bin/bash
2#set -x
3set -o posix
4#set -u
5#set -e
6#+
7#
8# ==========
9# agrifpp.sh
10# ==========
11#
12# ----------------------------
13# Preform AGrif pre-processing
14# ----------------------------
15#
16# SYNOPSIS
17# ========
18#
19# ::
20#
21#  $ agrifpp.sh
22#
23#
24# DESCRIPTION
25# ===========
26#
27#
28# Preprocess file using the conv in NEMOFILES directory
29# Standard preprocessed files are stored in NEMOFILES/ppsrc/nemo
30# Source files are stored under NEMOFILES/obj
31# Include filess  in NEMOFILES/inc
32# Note that agrif2model.F90 should not be preprocess (standard one)
33#
34# EXAMPLES
35# ========
36#
37# ::
38#
39#  $ ./agrifpp.sh FILE_TO_PROCESS
40#
41# TODO
42# ====
43#
44# option debug
45#
46#
47# EVOLUTIONS
48# ==========
49#
50# $Id: agrifpp.sh 2143 2010-10-04 12:49:55Z rblod $
51#
52#
53#
54#   * creation
55#
56#-
57MYFILE=$(basename "$1")
58if [ "$MYFILE" == "agrif2model.f90" ];then
59   \cp ${NEMO_TDIR}/${NEW_CONF}/WORK/${MYFILE/.f90/.F90} ${NEMO_TDIR}/${NEW_CONF}/NEMOFILES/obj/$MYFILE
60else
61cd ${NEMO_TDIR}/${NEW_CONF}/NEMOFILES/ppsrc/nemo ; ${NEMO_TDIR}/${NEW_CONF}/NEMOFILES/conv ${NEMO_TDIR}/${NEW_CONF}/NEMOFILES/agrif_oce.in -rm -incdir ${NEMO_TDIR}/${NEW_CONF}/NEMOFILES/inc -comdirout ${NEMO_TDIR}/${NEW_CONF}/NEMOFILES/obj -convfile ${MYFILE} > /dev/null
62fi
Note: See TracBrowser for help on using the repository browser.