39 lines
940 B
Batchfile
Executable File
39 lines
940 B
Batchfile
Executable File
@echo off
|
|
|
|
if not exist General.cfg (
|
|
echo.
|
|
echo -----------------------------------------------------------------
|
|
echo Missing General.cfg
|
|
echo -----------------------------------------------------------------
|
|
echo.
|
|
goto quit
|
|
)
|
|
|
|
call RemoveBuildDoc.bat
|
|
|
|
echo.
|
|
echo -----------------------------------------------------------------
|
|
echo Start to build document
|
|
echo -----------------------------------------------------------------
|
|
echo.
|
|
|
|
md Library
|
|
md CHM
|
|
|
|
if exist DriverDoc.cfg (
|
|
doxygen DriverDoc.cfg
|
|
)
|
|
|
|
echo.
|
|
echo -----------------------------------------------------------------
|
|
echo Done.
|
|
echo -----------------------------------------------------------------
|
|
goto quit
|
|
|
|
echo.
|
|
echo -----------------------------------------------------------------
|
|
echo Done.
|
|
echo Go to Cygwin to run MakePDF.sh to create PDF version.
|
|
echo -----------------------------------------------------------------
|
|
|
|
:quit |