source: LMDZ6/branches/LMDZ_ECRad/libf/phylmd/ecrad/bin/make_dummy_includes.sh @ 4999

Last change on this file since 4999 was 4728, checked in by idelkadi, 11 months ago

Update of ecrad in the LMDZ_ECRad branch of LMDZ:

  • version 1.6.1 of ecrad
  • files are no longer grouped in the same ecrad directory.
  • the structure of ecrad offline is preserved to facilitate updating in LMDZ
  • cfg.bld modified to take into account the new added subdirectories.
  • the interface routines and those added in ecrad are moved to the phylmd directory
  • Property svn:executable set to *
File size: 552 bytes
Line 
1#!/bin/sh
2#
3# (C) Copyright 2015- ECMWF.
4#
5# This software is licensed under the terms of the Apache Licence Version 2.0
6# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7#
8# In applying this licence, ECMWF does not waive the privileges and immunities
9# granted to it by virtue of its status as an intergovernmental organisation
10# nor does it submit to any jurisdiction.
11
12
13while [ "$1" ]
14do
15    HEADERS=$(grep '^#include' $1 | awk '-F"' '{print $2}')
16    for FILE in $HEADERS
17    do
18        touch ../include/$FILE
19    done
20    shift
21done
Note: See TracBrowser for help on using the repository browser.