2017-10-24 06:56:03 -07:00
|
|
|
:: Batch file to generate a reference manual from the comments in the source code, with
|
|
|
|
:: Doxygen. The following tools should be installed and added to the path:
|
|
|
|
:: - DoxyGen (doxygen.exe)
|
|
|
|
:: - Graphviz (dot.exe)
|
|
|
|
:: - MikTex (pdflatex.exe)
|
2018-07-18 03:07:56 -07:00
|
|
|
if exist ..\ReferenceManuals\RM_SeedNKey.pdf del ..\ReferenceManuals\RM_SeedNKey.pdf
|
2017-10-24 06:56:03 -07:00
|
|
|
doxygen.exe DoxyfileSeedNKey
|
2018-07-18 02:19:20 -07:00
|
|
|
call .\output\SeedNKey\latex\make.bat
|
2018-07-18 03:07:56 -07:00
|
|
|
call copy .\output\SeedNKey\latex\refman.pdf ..\ReferenceManuals\RM_SeedNKey.pdf
|
2018-07-18 02:19:20 -07:00
|
|
|
|