mirror of https://github.com/arendst/Tasmota.git
Doxygen configuration file and helper script.
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.
This commit is contained in:
parent
8fdaa258ed
commit
bc64a4c8a3
|
@ -0,0 +1,9 @@
|
|||
#!/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
|
Loading…
Reference in New Issue