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 trunk/NEMOGCM/TOOLS/COMPILE – NEMO

source: trunk/NEMOGCM/TOOLS/COMPILE/agrifpp.sh @ 4990

Last change on this file since 4990 was 3680, checked in by rblod, 11 years ago

First commit of the final branch for 2012 (future nemo_3_5), see ticket #1028

  • 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 OPAFILES directory
29# Standard preprocessed files are stored in OPAFILES/ppsrc/nemo
30# Source files are stored under OPAFILES/obj
31# Include filess  in OPAFILES/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}/OPAFILES/obj/$MYFILE
60else
61cd ${NEMO_TDIR}/${NEW_CONF}/OPAFILES/ppsrc/nemo ; ${NEMO_TDIR}/${NEW_CONF}/OPAFILES/conv ${NEMO_TDIR}/${NEW_CONF}/OPAFILES/agrif_opa.in -rm -incdir ${NEMO_TDIR}/${NEW_CONF}/OPAFILES/inc -comdirout ${NEMO_TDIR}/${NEW_CONF}/OPAFILES/obj -convfile ${MYFILE} > /dev/null
62fi
Note: See TracBrowser for help on using the repository browser.