#!/bin/sh

# @HEADER
# *****************************************************************************
#                           Intrepid2 Package
#
# Copyright 2007 NTESS and the Intrepid2 contributors.
# SPDX-License-Identifier: BSD-3-Clause
# *****************************************************************************
# @HEADER

if [ $TRILINOS_HOME ]; then
  echo "TRILINOS_HOME has already been set!"
else
  echo "TRILINOS_HOME has not been set.  Setting it!"
  export TRILINOS_HOME=`pwd`/../../..
fi

echo
echo "Generating main intrepid2 doxygen documentation ..."
echo

doxygen Doxyfile
