|
|
@@ -20,21 +20,24 @@ REM -- Delete previous generated HTML files ---------------------
|
|
|
ECHO.
|
|
|
ECHO Delete previous generated HTML files
|
|
|
|
|
|
-IF EXIST DoxyGen\Core\html (
|
|
|
+IF EXIST ..\Documentation\Core\html (
|
|
|
rmdir /S /Q ..\Documentation\Core\html
|
|
|
)
|
|
|
-IF EXIST DoxyGen\Driver\html (
|
|
|
+IF EXIST ..\Documentation\Driver\html (
|
|
|
rmdir /S /Q ..\Documentation\Driver\html
|
|
|
)
|
|
|
-IF EXIST DoxyGen\General\html (
|
|
|
+IF EXIST ..\Documentation\General\html (
|
|
|
rmdir /S /Q ..\Documentation\General\html
|
|
|
)
|
|
|
-IF EXIST DoxyGen\Pack\html (
|
|
|
+IF EXIST ..\Documentation\Pack\html (
|
|
|
rmdir /S /Q ..\Documentation\Pack\html
|
|
|
)
|
|
|
-IF EXIST DoxyGen\SVD\html (
|
|
|
+IF EXIST ..\Documentation\SVD\html (
|
|
|
rmdir /S /Q ..\Documentation\SVD\html
|
|
|
)
|
|
|
+IF EXIST ..\Documentation\DSP\html (
|
|
|
+ rmdir /S /Q ..\Documentation\DSP\html
|
|
|
+)
|
|
|
|
|
|
REM -- Generate New HTML Files ---------------------
|
|
|
ECHO.
|
|
|
@@ -60,6 +63,10 @@ pushd SVD
|
|
|
CALL doxygen_svd.bat
|
|
|
popd
|
|
|
|
|
|
+pushd DSP
|
|
|
+CALL doxygen_dsp.bat
|
|
|
+popd
|
|
|
+
|
|
|
REM -- Copy search style sheet ---------------------
|
|
|
ECHO Copy search style sheets
|
|
|
copy /Y Doxygen_Templates\search.css ..\Documentation\CORE\html\search\.
|
|
|
@@ -67,6 +74,7 @@ copy /Y Doxygen_Templates\search.css ..\Documentation\Driver\html\search\.
|
|
|
REM copy /Y Doxygen_Templates\search.css ..\Documentation\General\html\search\.
|
|
|
copy /Y Doxygen_Templates\search.css ..\Documentation\Pack\html\search\.
|
|
|
REM copy /Y Doxygen_Templates\search.css ..\Documentation\SVD\html\search\.
|
|
|
+copy /Y Doxygen_Templates\search.css ..\Documentation\DSP\html\search\.
|
|
|
|
|
|
:END
|
|
|
ECHO.
|