katie/scripts/gendocs.sh

14 lines
206 B
Bash
Raw Normal View History

#!/bin/bash
set -e
cwd="$(dirname $0)"
if ! type -p doxygen;then
echo "Doxygen is not installed"
exit 1
fi
rm -rf apidocs/*
echo "Generating API docs for Katie..."
doxygen ${cwd}/../doxygen.conf