Cog/Frameworks/Sparkle/Documentation/build-docs.sh
2014-08-01 03:53:07 -07:00

11 lines
258 B
Bash
Executable file

#!/bin/bash
if [ "$ACTION" = "" ] ; then
if which -s doxygen ; then
doxygen Documentation/Doxyfile
else
echo "warning: Doxygen not found in PATH"
fi
elif [ "$ACTION" = "clean" ] ; then
rm -rf "$SRCROOT/Documentation/html"
fi