Robert Rostohar | ba96a2c | 2016-07-01 22:42:12 +0200 | [diff] [blame] | 1 | @echo off |
| 2 | |
| 3 | REM ==================================================================================== |
| 4 | REM Batch file for generating |
| 5 | REM |
| 6 | REM Author : |
| 7 | REM Date : 7th April 2016 |
| 8 | REM Version : 1.0 |
| 9 | REM Company : ARM |
| 10 | REM |
| 11 | REM |
| 12 | REM Command syntax: genDoc.bat |
| 13 | REM |
| 14 | REM Version: 1.0 Initial Version. |
| 15 | REM ==================================================================================== |
| 16 | |
| 17 | SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION |
| 18 | |
| 19 | REM -- Delete previous generated HTML files --------------------- |
| 20 | ECHO. |
| 21 | ECHO Delete previous generated HTML files |
| 22 | |
| 23 | REM -- Remove generated doxygen files --------------------- |
| 24 | PUSHD ..\Documentation |
FabKlein | 9528797 | 2017-12-21 16:16:09 +0100 | [diff] [blame] | 25 | FOR %%A IN (Core, Core_A, DAP, Driver, DSP, NN, General, Pack, RTOS, RTOS2, SVD, Zone) DO IF EXIST %%A (RMDIR /S /Q %%A) |
Robert Rostohar | ba96a2c | 2016-07-01 22:42:12 +0200 | [diff] [blame] | 26 | POPD |
| 27 | |
| 28 | REM -- Generate New HTML Files --------------------- |
| 29 | ECHO. |
| 30 | ECHO Generate New HTML Files |
| 31 | |
| 32 | pushd Core |
| 33 | CALL doxygen_core.bat |
| 34 | popd |
| 35 | |
bruneu01 | 90bb2e3 | 2017-02-16 11:44:54 +0100 | [diff] [blame] | 36 | pushd Core_A |
| 37 | CALL doxygen_core_A.bat |
| 38 | popd |
| 39 | |
Robert Rostohar | ba96a2c | 2016-07-01 22:42:12 +0200 | [diff] [blame] | 40 | pushd DAP |
| 41 | CALL doxygen_dap.bat |
| 42 | popd |
| 43 | |
| 44 | pushd Driver |
| 45 | CALL doxygen_driver.bat |
| 46 | popd |
| 47 | |
| 48 | pushd DSP |
| 49 | CALL doxygen_dsp.bat |
| 50 | popd |
| 51 | |
FabKlein | 9528797 | 2017-12-21 16:16:09 +0100 | [diff] [blame] | 52 | pushd NN |
| 53 | CALL doxygen_nn.bat |
| 54 | popd |
| 55 | |
Robert Rostohar | ba96a2c | 2016-07-01 22:42:12 +0200 | [diff] [blame] | 56 | pushd General |
| 57 | CALL doxygen_general.bat |
| 58 | popd |
| 59 | |
| 60 | pushd Pack |
| 61 | CALL doxygen_pack.bat |
| 62 | popd |
| 63 | |
| 64 | pushd RTOS |
| 65 | CALL doxygen_rtos.bat |
| 66 | popd |
| 67 | |
| 68 | pushd RTOS2 |
| 69 | CALL doxygen_rtos.bat |
| 70 | popd |
| 71 | |
| 72 | pushd SVD |
| 73 | CALL doxygen_svd.bat |
| 74 | popd |
| 75 | |
bruneu01 | 90bb2e3 | 2017-02-16 11:44:54 +0100 | [diff] [blame] | 76 | pushd Zone |
| 77 | CALL doxygen_zone.bat |
| 78 | popd |
| 79 | |
Robert Rostohar | ba96a2c | 2016-07-01 22:42:12 +0200 | [diff] [blame] | 80 | REM -- Copy search style sheet --------------------- |
| 81 | ECHO. |
| 82 | ECHO Copy search style sheets |
bruneu01 | 90bb2e3 | 2017-02-16 11:44:54 +0100 | [diff] [blame] | 83 | copy /Y Doxygen_Templates\search.css ..\Documentation\Core\html\search\. |
| 84 | copy /Y Doxygen_Templates\search.css ..\Documentation\Core_A\html\search\. |
Robert Rostohar | ba96a2c | 2016-07-01 22:42:12 +0200 | [diff] [blame] | 85 | copy /Y Doxygen_Templates\search.css ..\Documentation\Driver\html\search\. |
| 86 | REM copy /Y Doxygen_Templates\search.css ..\Documentation\General\html\search\. |
| 87 | copy /Y Doxygen_Templates\search.css ..\Documentation\Pack\html\search\. |
| 88 | REM copy /Y Doxygen_Templates\search.css ..\Documentation\SVD\html\search\. |
| 89 | copy /Y Doxygen_Templates\search.css ..\Documentation\DSP\html\search\. |
FabKlein | 9528797 | 2017-12-21 16:16:09 +0100 | [diff] [blame] | 90 | copy /Y Doxygen_Templates\search.css ..\Documentation\NN\html\search\. |
Robert Rostohar | ba96a2c | 2016-07-01 22:42:12 +0200 | [diff] [blame] | 91 | copy /Y Doxygen_Templates\search.css ..\Documentation\DAP\html\search\. |
Matthias Hertel | b73eaf3 | 2016-07-22 15:18:56 +0200 | [diff] [blame] | 92 | copy /Y Doxygen_Templates\search.css ..\Documentation\RTOS\html\search\. |
| 93 | copy /Y Doxygen_Templates\search.css ..\Documentation\RTOS2\html\search\. |
bruneu01 | 90bb2e3 | 2017-02-16 11:44:54 +0100 | [diff] [blame] | 94 | copy /Y Doxygen_Templates\search.css ..\Documentation\Zone\html\search\. |
Robert Rostohar | ba96a2c | 2016-07-01 22:42:12 +0200 | [diff] [blame] | 95 | |
| 96 | :END |
| 97 | ECHO. |
| 98 | REM done |