Codebase list cppad / debian/2017.00.00.4-3 bin / check_doxygen.sh
debian/2017.00.00.4-3

Tree @debian/2017.00.00.4-3 (Download .tar.gz)

check_doxygen.sh @debian/2017.00.00.4-3raw · history · blame

#! /bin/bash -e
# $Id: check_doxygen.sh 3853 2016-12-14 14:40:11Z bradbell $
# -----------------------------------------------------------------------------
# CppAD: C++ Algorithmic Differentiation: Copyright (C) 2003-16 Bradley M. Bell
#
# CppAD is distributed under multiple licenses. This distribution is under
# the terms of the
#                     GNU General Public License Version 3.
#
# A copy of this license is included in the COPYING file of this distribution.
# Please visit http://www.coin-or.org/CppAD/ for information on other licenses.
# -----------------------------------------------------------------------------
if [ ! -e "bin/check_doxygen.sh" ]
then
	echo "bin/check_doxygen.sh: must be executed from its parent directory"
	exit 1
fi
# -----------------------------------------------------------------------------
if ! bin/run_doxygen.sh
then
	echo 'check_doxygen.sh: Error'
	exit 1
fi
echo 'check_doxygen.sh: OK'
exit 0