mirror of https://github.com/rusefi/openblt.git
20 lines
740 B
Bash
Executable File
20 lines
740 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Shell script to generate a reference manual from the comments in the source code, with
|
|
# Doxygen. The following tools should be installed and accessible on the default path:
|
|
# - Doxygen
|
|
# - Graphviz
|
|
# - Make
|
|
# - Texlive-Latex
|
|
#
|
|
# On Debian based systems: sudo apt install make doxygen graphviz texlive-latex-base
|
|
# texlive-latex-extra
|
|
# On openSUSE based systems: sudo zypper install make doxygen graphviz texlive-latex
|
|
# texlive-tabu texlive-tocloft
|
|
rm -rf ../ReferenceManuals/RM_BootCommander.pdf
|
|
doxygen DoxyfileBootCommander
|
|
cd output/BootCommander/latex/
|
|
make
|
|
cp refman.pdf ../../../../ReferenceManuals/RM_BootCommander.pdf
|
|
cd ../../../
|