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.
Fmake_bld.sh in branches/DEV_r1879_FCM/NEMOGCM/TOOLS/COMPILE – NEMO

source: branches/DEV_r1879_FCM/NEMOGCM/TOOLS/COMPILE/Fmake_bld.sh @ 2143

Last change on this file since 2143 was 2143, checked in by rblod, 14 years ago

Improvement of FCM branch

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 853 bytes
Line 
1#!/bin/bash
2#set -x
3set -o posix
4#set -u
5#set -e
6#+
7#
8# ============
9# Fmake_bld.sh
10# ============
11#
12# --------------------------
13# Make build directory
14# --------------------------
15#
16# SYNOPSIS
17# ========
18#
19# ::
20#
21#  $ Fmake_bld.sh
22#
23#
24# DESCRIPTION
25# ===========
26#
27#
28# - Make the build directory
29# - Create repositories needed :
30
31#  - BLD for compilation
32#
33# EXAMPLES
34# ========
35#
36# ::
37#
38#  $ ./Fmake_bld.sh CONFIG_DIR CONFIG_NAME  TMP_DIR
39#
40#
41# TODO
42# ====
43#
44# option debug
45#
46#
47# EVOLUTIONS
48# ==========
49#
50# $Id$
51#
52#
53#
54#   * creation
55#
56#-
57[ ! -d ${3}/${2} ] && \mkdir   ${3}/${2}
58[ ! -d ${3}/${2}/BLD ] && \mkdir  ${3}/${2}/BLD
59[ ! -d ${1}/${2}/BLD ]   && ln -sf ${3}/${2}/BLD ${1}/${2}/BLD
60[ -f ${1}/${NEW_CONF}/cpp_${NEW_CONF}.fcm ] && ln -sf ${1}/${NEW_CONF}/cpp_${NEW_CONF}.fcm ${COMPIL_DIR}/cpp.fcm
61rm -f  ${1}/${NEW_CONF}/BLD/fcm.bld.lock
Note: See TracBrowser for help on using the repository browser.