#!/bin/bash
# ------------------------------------------------------------------------------
# Programmer(s): Radu Serban, David J. Gardner, Cody J. Balos @ LLNL
# ------------------------------------------------------------------------------
# SUNDIALS Copyright Start
# Copyright (c) 2002-2024, Lawrence Livermore National Security
# and Southern Methodist University.
# All rights reserved.
#
# See the top-level LICENSE and NOTICE files for details.
#
# SPDX-License-Identifier: BSD-3-Clause
# SUNDIALS Copyright End
# ------------------------------------------------------------------------------
# Script to add CVODES files to a SUNDIALS tar-file.
# ------------------------------------------------------------------------------

set -e
set -o pipefail

tarfile=$1
distrobase=$2
doc=$3

# all remaining inputs are for tar command
shift 3
tar=$*

echo "   --- Add cvodes module to $tarfile"

if [ $doc = "T" ]; then
    $tar $tarfile $distrobase/doc/cvodes/cvs_guide.pdf
    $tar $tarfile $distrobase/doc/cvodes/cvs_examples.pdf
fi
$tar $tarfile $distrobase/doc/cvodes/guide/Makefile
$tar $tarfile $distrobase/doc/cvodes/guide/source

echo "   --- Add cvodes include files to $tarfile"
$tar $tarfile $distrobase/include/cvodes

echo "   --- Add cvodes source files to $tarfile"
$tar $tarfile $distrobase/src/cvodes

echo "   --- Add cvodes examples to $tarfile"
$tar $tarfile $distrobase/examples/cvodes

echo "   --- Add cvodes unit tests to $tarfile"
$tar $tarfile $distrobase/test/unit_tests/cvodes
