Cog/Frameworks/Sparkle/Documentation/build-docs.sh

12 lines
258 B
Bash
Raw Normal View History

2014-08-01 06:53:07 -04:00
#!/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