mirror of https://github.com/ecmwf/eccodes.git
51 lines
1012 B
Bash
51 lines
1012 B
Bash
# Copyright 2005-2015 ECMWF.
|
|
#
|
|
# This software is licensed under the terms of the Apache Licence Version 2.0
|
|
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
|
|
#
|
|
# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
|
|
# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
|
|
|
|
set -ea
|
|
|
|
echo
|
|
echo "TEST: $0"
|
|
|
|
data_dir=""
|
|
|
|
# save current working dir
|
|
save=`pwd`
|
|
|
|
if [ -z "${data_dir}" ]
|
|
then
|
|
cd ../
|
|
cpath=`pwd`
|
|
ECCODES_DEFINITION_PATH=$cpath/definitions
|
|
export ECCODES_DEFINITION_PATH
|
|
ECCODES_SAMPLES_PATH=$cpath/samples
|
|
export ECCODES_SAMPLES_PATH
|
|
tools_dir=$cpath/tools/
|
|
tigge_dir=$cpath/tigge/
|
|
data_dir=$cpath/data
|
|
test_dir=$cpath/tests
|
|
def_dir=$cpath/definitions
|
|
else
|
|
tools_dir=""
|
|
tigge_dir=""
|
|
fi
|
|
|
|
if [ -z "${GRIB_API_INCLUDE}" ]
|
|
then
|
|
GRIB_API_INCLUDE=`pwd`/src
|
|
fi
|
|
|
|
if [ -z "${GRIB_API_LIB}" ]
|
|
then
|
|
GRIB_API_LIB=`pwd`/src
|
|
fi
|
|
|
|
# go back to current working dir
|
|
cd $save
|
|
|
|
set -u
|