This commit adds a configuration file for the Doxygen documenation generator and a helper script to create/update the source code documentation. Just install Doxygen and GraphViz and run "updateDocs.sh" to create the source code documentation.
10 lines
242 B
Bash
10 lines
242 B
Bash
#!/bin/sh
|
|
|
|
SCRIPTPATH="$(readlink -f "$0")"
|
|
SCRIPTPATH="${SCRIPTPATH%/*}"
|
|
|
|
rm -rf "$SCRIPTPATH/html"
|
|
echo -e "\n\n\n\n"
|
|
#cd "$SCRIPTPATH/" && doxygen && git add $DOCDIR && git commit -a -m "Documentation update."
|
|
cd "$SCRIPTPATH/" && doxygen
|