blob: eb2a56c4fe9358036b7254c14c157c966ca4192a [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
25FOR %%A IN (Core, DAP, Driver, DSP, General, Pack, RTOS, RTOS2, SVD) DO IF EXIST %%A (RMDIR /S /Q %%A)
26POPD
27
28REM -- Generate New HTML Files ---------------------
29 ECHO.
30 ECHO Generate New HTML Files
31
32pushd Core
33CALL doxygen_core.bat
34popd
35
36pushd DAP
37CALL doxygen_dap.bat
38popd
39
40pushd Driver
41CALL doxygen_driver.bat
42popd
43
44pushd DSP
45CALL doxygen_dsp.bat
46popd
47
48pushd General
49CALL doxygen_general.bat
50popd
51
52pushd Pack
53CALL doxygen_pack.bat
54popd
55
56pushd RTOS
57CALL doxygen_rtos.bat
58popd
59
60pushd RTOS2
61CALL doxygen_rtos.bat
62popd
63
64pushd SVD
65CALL doxygen_svd.bat
66popd
67
68REM -- Copy search style sheet ---------------------
69 ECHO.
70 ECHO Copy search style sheets
71copy /Y Doxygen_Templates\search.css ..\Documentation\CORE\html\search\.
72copy /Y Doxygen_Templates\search.css ..\Documentation\Driver\html\search\.
73REM copy /Y Doxygen_Templates\search.css ..\Documentation\General\html\search\.
74copy /Y Doxygen_Templates\search.css ..\Documentation\Pack\html\search\.
75REM copy /Y Doxygen_Templates\search.css ..\Documentation\SVD\html\search\.
76copy /Y Doxygen_Templates\search.css ..\Documentation\DSP\html\search\.
77copy /Y Doxygen_Templates\search.css ..\Documentation\DAP\html\search\.
Matthias Hertelb73eaf32016-07-22 15:18:56 +020078copy /Y Doxygen_Templates\search.css ..\Documentation\RTOS\html\search\.
79copy /Y Doxygen_Templates\search.css ..\Documentation\RTOS2\html\search\.
Robert Rostoharba96a2c2016-07-01 22:42:12 +020080
81:END
82 ECHO.
83REM done