blob: af178ab105c2f1b6f73ac808bd630bca771171ee [file] [log] [blame]
Robert Rostoharba96a2c2016-07-01 22:42:12 +02001@echo off
2
3REM ====================================================================================
4REM Batch file for generating
5REM
6REM Author :
7REM Date : 7th April 2016
8REM Version : 1.0
9REM Company : ARM
10REM
11REM
12REM Command syntax: genDoc.bat
13REM
14REM Version: 1.0 Initial Version.
15REM ====================================================================================
16
17SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
18
19REM -- Delete previous generated HTML files ---------------------
20 ECHO.
21 ECHO Delete previous generated HTML files
22
23REM -- Remove generated doxygen files ---------------------
24PUSHD ..\Documentation
FabKlein95287972017-12-21 16:16:09 +010025FOR %%A IN (Core, Core_A, DAP, Driver, DSP, NN, General, Pack, RTOS, RTOS2, SVD, Zone) DO IF EXIST %%A (RMDIR /S /Q %%A)
Robert Rostoharba96a2c2016-07-01 22:42:12 +020026POPD
27
28REM -- Generate New HTML Files ---------------------
29 ECHO.
30 ECHO Generate New HTML Files
31
32pushd Core
33CALL doxygen_core.bat
34popd
35
bruneu0190bb2e32017-02-16 11:44:54 +010036pushd Core_A
37CALL doxygen_core_A.bat
38popd
39
Robert Rostoharba96a2c2016-07-01 22:42:12 +020040pushd DAP
41CALL doxygen_dap.bat
42popd
43
44pushd Driver
45CALL doxygen_driver.bat
46popd
47
48pushd DSP
49CALL doxygen_dsp.bat
50popd
51
FabKlein95287972017-12-21 16:16:09 +010052pushd NN
53CALL doxygen_nn.bat
54popd
55
Robert Rostoharba96a2c2016-07-01 22:42:12 +020056pushd General
57CALL doxygen_general.bat
58popd
59
60pushd Pack
61CALL doxygen_pack.bat
62popd
63
64pushd RTOS
65CALL doxygen_rtos.bat
66popd
67
68pushd RTOS2
69CALL doxygen_rtos.bat
70popd
71
72pushd SVD
73CALL doxygen_svd.bat
74popd
75
bruneu0190bb2e32017-02-16 11:44:54 +010076pushd Zone
77CALL doxygen_zone.bat
78popd
79
Robert Rostoharba96a2c2016-07-01 22:42:12 +020080REM -- Copy search style sheet ---------------------
81 ECHO.
82 ECHO Copy search style sheets
bruneu0190bb2e32017-02-16 11:44:54 +010083copy /Y Doxygen_Templates\search.css ..\Documentation\Core\html\search\.
84copy /Y Doxygen_Templates\search.css ..\Documentation\Core_A\html\search\.
Robert Rostoharba96a2c2016-07-01 22:42:12 +020085copy /Y Doxygen_Templates\search.css ..\Documentation\Driver\html\search\.
86REM copy /Y Doxygen_Templates\search.css ..\Documentation\General\html\search\.
87copy /Y Doxygen_Templates\search.css ..\Documentation\Pack\html\search\.
88REM copy /Y Doxygen_Templates\search.css ..\Documentation\SVD\html\search\.
89copy /Y Doxygen_Templates\search.css ..\Documentation\DSP\html\search\.
FabKlein95287972017-12-21 16:16:09 +010090copy /Y Doxygen_Templates\search.css ..\Documentation\NN\html\search\.
Robert Rostoharba96a2c2016-07-01 22:42:12 +020091copy /Y Doxygen_Templates\search.css ..\Documentation\DAP\html\search\.
Matthias Hertelb73eaf32016-07-22 15:18:56 +020092copy /Y Doxygen_Templates\search.css ..\Documentation\RTOS\html\search\.
93copy /Y Doxygen_Templates\search.css ..\Documentation\RTOS2\html\search\.
bruneu0190bb2e32017-02-16 11:44:54 +010094copy /Y Doxygen_Templates\search.css ..\Documentation\Zone\html\search\.
Robert Rostoharba96a2c2016-07-01 22:42:12 +020095
96:END
97 ECHO.
98REM done