From c257e27589d5848dd2c61425d91098d03c1928dc Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sun, 7 Nov 2021 08:49:48 +0000 Subject: [PATCH] Folder reorganization. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15028 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- doc/build/ex/Doxyfile_chm | 13 ++--- doc/build/ex/Doxyfile_html | 13 ++--- doc/build/ex/makechm.bat | 6 +-- doc/build/ex/makehtml.bat | 6 +-- doc/build/ex/makehtml.sh | 6 +-- doc/build/full_rm/Doxyfile_html | 55 ++++++++++---------- doc/build/full_rm/index.html | 8 --- doc/build/full_rm/makechm.bat | 6 +-- doc/build/full_rm/makehtml.bat | 6 +-- doc/build/full_rm/makehtml.sh | 6 +-- doc/build/hal-stm32f3/Doxyfile_html | 40 +++++++------- doc/build/hal-stm32f3/index.html | 8 --- doc/build/hal-stm32f3/makehtml.bat | 6 +-- doc/build/hal-stm32f3/makehtml.sh | 6 +-- doc/build/hal/Doxyfile_chm | 20 +++---- doc/build/hal/Doxyfile_html | 20 +++---- doc/build/hal/makechm.bat | 6 +-- doc/build/hal/makehtml.bat | 6 +-- doc/build/hal/makehtml.sh | 6 +-- doc/build/nil/Doxyfile_chm | 18 +++---- doc/build/nil/Doxyfile_html | 18 +++---- doc/build/nil/index.html | 8 --- doc/build/nil/makechm.bat | 6 +-- doc/build/nil/makehtml.bat | 6 +-- doc/build/nil/makehtml.sh | 6 +-- doc/build/rt/Doxyfile_chm | 4 +- doc/build/rt/Doxyfile_html | 20 +++---- doc/build/rt/index.html | 8 --- doc/build/rt/makechm.bat | 6 +-- doc/build/rt/makehtml.bat | 6 +-- doc/build/rt/makehtml.sh | 6 +-- doc/{build/ex/index.html => manuals/ex.html} | 2 +- 32 files changed, 164 insertions(+), 193 deletions(-) delete mode 100644 doc/build/full_rm/index.html delete mode 100755 doc/build/hal-stm32f3/index.html delete mode 100644 doc/build/nil/index.html delete mode 100644 doc/build/rt/index.html rename doc/{build/ex/index.html => manuals/ex.html} (60%) diff --git a/doc/build/ex/Doxyfile_chm b/doc/build/ex/Doxyfile_chm index 7a887d656..150167fdc 100644 --- a/doc/build/ex/Doxyfile_chm +++ b/doc/build/ex/Doxyfile_chm @@ -853,10 +853,11 @@ WARN_LOGFILE = # Note: If this tag is empty the current directory is searched. INPUT = ./src \ - ../../os/ex/dox \ - ../../os/ex/devices/Bosch \ - ../../os/ex/devices/ST \ - ../../os/ex/include + ../../../os/ex/dox \ + ../../../os/ex/devices/ADI \ + ../../../os/ex/devices/Bosch \ + ../../../os/ex/devices/ST \ + ../../../os/ex/include # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -1194,7 +1195,7 @@ GENERATE_HTML = YES # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_OUTPUT = html +HTML_OUTPUT = ../../manuals/html/ex # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). @@ -1406,7 +1407,7 @@ GENERATE_HTMLHELP = YES # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. -CHM_FILE = ../../ChibiOS_EX.chm +CHM_FILE = ../../../manuals/ChibiOS_EX.chm # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler (hhc.exe). If non-empty, diff --git a/doc/build/ex/Doxyfile_html b/doc/build/ex/Doxyfile_html index d31a3c77c..a05d55e90 100644 --- a/doc/build/ex/Doxyfile_html +++ b/doc/build/ex/Doxyfile_html @@ -853,10 +853,11 @@ WARN_LOGFILE = # Note: If this tag is empty the current directory is searched. INPUT = ./src \ - ../../os/ex/dox \ - ../../os/ex/devices/Bosch \ - ../../os/ex/devices/ST \ - ../../os/ex/include + ../../../os/ex/dox \ + ../../../os/ex/devices/ADI \ + ../../../os/ex/devices/Bosch \ + ../../../os/ex/devices/ST \ + ../../../os/ex/include # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -1194,7 +1195,7 @@ GENERATE_HTML = YES # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_OUTPUT = html +HTML_OUTPUT = ../../manuals/html/ex # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). @@ -1406,7 +1407,7 @@ GENERATE_HTMLHELP = NO # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. -CHM_FILE = ../../ChibiOS_EX.chm +CHM_FILE = ../../../manuals/ChibiOS_EX.chm # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler (hhc.exe). If non-empty, diff --git a/doc/build/ex/makechm.bat b/doc/build/ex/makechm.bat index 0749cab51..6646c8a46 100644 --- a/doc/build/ex/makechm.bat +++ b/doc/build/ex/makechm.bat @@ -1,5 +1,5 @@ -del html\*.* /Q +del ..\..\manuals\html\ex\*.* /Q doxygen Doxyfile_chm -del html\*.md5 -del html\*.map +del ..\..\manuals\html\ex\*.md5 +del ..\..\manuals\html\ex\*.map pause diff --git a/doc/build/ex/makehtml.bat b/doc/build/ex/makehtml.bat index 2becc1036..48b798168 100644 --- a/doc/build/ex/makehtml.bat +++ b/doc/build/ex/makehtml.bat @@ -1,5 +1,5 @@ -del html\*.* /Q +del ..\..\manuals\html\ex\*.* /Q doxygen Doxyfile_html -del html\*.md5 -del html\*.map +del ..\..\manuals\html\ex\*.md5 +del ..\..\manuals\html\ex\*.map pause diff --git a/doc/build/ex/makehtml.sh b/doc/build/ex/makehtml.sh index 985e4b0e8..cdf301951 100644 --- a/doc/build/ex/makehtml.sh +++ b/doc/build/ex/makehtml.sh @@ -1,6 +1,6 @@ #!/bin/bash -rm html/* +rm ../../manuals/html/ex/* doxygen Doxyfile_html -rm html/*.md5 -rm html/*.map +rm ../../manuals/html/ex/*.md5 +rm ../../manuals/html/ex/*.map diff --git a/doc/build/full_rm/Doxyfile_html b/doc/build/full_rm/Doxyfile_html index 3a03dc204..aa8dc4712 100644 --- a/doc/build/full_rm/Doxyfile_html +++ b/doc/build/full_rm/Doxyfile_html @@ -854,31 +854,32 @@ WARN_LOGFILE = INPUT = ./src \ ../common/src \ - ../../os/license \ - ../../os/rt/dox \ - ../../os/rt/src \ - ../../os/rt/include \ - ../../os/rt/templates \ - ../../os/nil/dox \ - ../../os/nil/src \ - ../../os/nil/include \ - ../../os/nil/templates \ - ../../os/oslib/dox \ - ../../os/oslib/src \ - ../../os/oslib/include \ - ../../os/common/ports/templates \ - ../../os/hal/dox \ - ../../os/hal/src \ - ../../os/hal/include \ - ../../os/hal/lib/streams \ - ../../os/hal/lib/complex/mfs \ - ../../os/hal/lib/complex/serial_nor \ - ../../os/hal/templates \ - ../../os/hal/templates/osal \ - ../../os/ex/dox \ - ../../os/ex/devices/Bosch \ - ../../os/ex/devices/ST \ - ../../os/ex/include + ../../../os/license \ + ../../../os/rt/dox \ + ../../../os/rt/src \ + ../../../os/rt/include \ + ../../../os/rt/templates \ + ../../../os/nil/dox \ + ../../../os/nil/src \ + ../../../os/nil/include \ + ../../../os/nil/templates \ + ../../../os/oslib/dox \ + ../../../os/oslib/src \ + ../../../os/oslib/include \ + ../../../os/common/ports/templates \ + ../../../os/hal/dox \ + ../../../os/hal/src \ + ../../../os/hal/include \ + ../../../os/hal/lib/streams \ + ../../../os/hal/lib/complex/mfs \ + ../../../os/hal/lib/complex/serial_nor \ + ../../../os/hal/templates \ + ../../../os/hal/templates/osal \ + ../../../os/ex/dox \ + ../../../os/ex/devices/ADI \ + ../../../os/ex/devices/Bosch \ + ../../../os/ex/devices/ST \ + ../../../os/ex/include # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -1216,7 +1217,7 @@ GENERATE_HTML = YES # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_OUTPUT = html +HTML_OUTPUT = ../../manuals/html/full_rm # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). @@ -1428,7 +1429,7 @@ GENERATE_HTMLHELP = NO # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. -CHM_FILE = ../../ChibiOS_RT.chm +CHM_FILE = ../../../manuals/ChibiOS_Full-RM.chm # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler (hhc.exe). If non-empty, diff --git a/doc/build/full_rm/index.html b/doc/build/full_rm/index.html deleted file mode 100644 index bf4fe4e3f..000000000 --- a/doc/build/full_rm/index.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/doc/build/full_rm/makechm.bat b/doc/build/full_rm/makechm.bat index 0749cab51..4a1ae22c3 100644 --- a/doc/build/full_rm/makechm.bat +++ b/doc/build/full_rm/makechm.bat @@ -1,5 +1,5 @@ -del html\*.* /Q +del ..\..\manuals\html\full_rm\*.* /Q doxygen Doxyfile_chm -del html\*.md5 -del html\*.map +del ..\..\manuals\html\full_rm\*.md5 +del ..\..\manuals\html\full_rm\*.map pause diff --git a/doc/build/full_rm/makehtml.bat b/doc/build/full_rm/makehtml.bat index 2becc1036..ec588bb48 100644 --- a/doc/build/full_rm/makehtml.bat +++ b/doc/build/full_rm/makehtml.bat @@ -1,5 +1,5 @@ -del html\*.* /Q +del ..\..\manuals\html\full_rm\*.* /Q doxygen Doxyfile_html -del html\*.md5 -del html\*.map +del ..\..\manuals\html\full_rm\*.md5 +del ..\..\manuals\html\full_rm\*.map pause diff --git a/doc/build/full_rm/makehtml.sh b/doc/build/full_rm/makehtml.sh index 985e4b0e8..c5df98b61 100644 --- a/doc/build/full_rm/makehtml.sh +++ b/doc/build/full_rm/makehtml.sh @@ -1,6 +1,6 @@ #!/bin/bash -rm html/* +rm ../../manuals/html/full_rm/* doxygen Doxyfile_html -rm html/*.md5 -rm html/*.map +rm ../../manuals/html/full_rm/*.md5 +rm ../../manuals/html/full_rm/*.map diff --git a/doc/build/hal-stm32f3/Doxyfile_html b/doc/build/hal-stm32f3/Doxyfile_html index a12d817c3..0b7f00eb8 100644 --- a/doc/build/hal-stm32f3/Doxyfile_html +++ b/doc/build/hal-stm32f3/Doxyfile_html @@ -853,24 +853,24 @@ WARN_LOGFILE = # Note: If this tag is empty the current directory is searched. INPUT = ./src \ - ../../os/hal/dox \ - ../../os/hal/src \ - ../../os/hal/include \ - ../../os/hal/ports/STM32/STM32F3xx \ - ../../os/hal/ports/STM32/LLD/ADCv3 \ - ../../os/hal/ports/STM32/LLD/CANv1 \ - ../../os/hal/ports/STM32/LLD/DACv1 \ - ../../os/hal/ports/STM32/LLD/DMAv1 \ - ../../os/hal/ports/STM32/LLD/EXTIv1 \ - ../../os/hal/ports/STM32/LLD/GPIOv2 \ - ../../os/hal/ports/STM32/LLD/I2Cv2 \ - ../../os/hal/ports/STM32/LLD/RTCv2 \ - ../../os/hal/ports/STM32/LLD/SPIv2 \ - ../../os/hal/ports/STM32/LLD/TIMv1 \ - ../../os/hal/ports/STM32/LLD/USARTv2 \ - ../../os/hal/ports/STM32/LLD/USBv1 \ - ../../os/hal/ports/STM32/LLD/xWDGv1 \ - ../../os/hal/templates/osal + ../../../os/hal/dox \ + ../../../os/hal/src \ + ../../../os/hal/include \ + ../../../os/hal/ports/STM32/STM32F3xx \ + ../../../os/hal/ports/STM32/LLD/ADCv3 \ + ../../../os/hal/ports/STM32/LLD/CANv1 \ + ../../../os/hal/ports/STM32/LLD/DACv1 \ + ../../../os/hal/ports/STM32/LLD/DMAv1 \ + ../../../os/hal/ports/STM32/LLD/EXTIv1 \ + ../../../os/hal/ports/STM32/LLD/GPIOv2 \ + ../../../os/hal/ports/STM32/LLD/I2Cv2 \ + ../../../os/hal/ports/STM32/LLD/RTCv2 \ + ../../../os/hal/ports/STM32/LLD/SPIv2 \ + ../../../os/hal/ports/STM32/LLD/TIMv1 \ + ../../../os/hal/ports/STM32/LLD/USARTv2 \ + ../../../os/hal/ports/STM32/LLD/USBv1 \ + ../../../os/hal/ports/STM32/LLD/xWDGv1 \ + ../../../os/hal/templates/osal # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -1208,7 +1208,7 @@ GENERATE_HTML = YES # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_OUTPUT = html +HTML_OUTPUT = ../../manuals/html/hal_stm32f3xx # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). @@ -1420,7 +1420,7 @@ GENERATE_HTMLHELP = NO # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. -CHM_FILE = ../../ChibiOS_HAL.chm +CHM_FILE = ../../../manuals/ChibiOS_HAL_STM32F3xx.chm # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler (hhc.exe). If non-empty, diff --git a/doc/build/hal-stm32f3/index.html b/doc/build/hal-stm32f3/index.html deleted file mode 100755 index bf4fe4e3f..000000000 --- a/doc/build/hal-stm32f3/index.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/doc/build/hal-stm32f3/makehtml.bat b/doc/build/hal-stm32f3/makehtml.bat index 2becc1036..672fd6e6d 100755 --- a/doc/build/hal-stm32f3/makehtml.bat +++ b/doc/build/hal-stm32f3/makehtml.bat @@ -1,5 +1,5 @@ -del html\*.* /Q +del ..\..\manuals\html\hal_stm32f3xx\*.* /Q doxygen Doxyfile_html -del html\*.md5 -del html\*.map +del ..\..\manuals\html\hal_stm32f3xx\*.md5 +del ..\..\manuals\html\hal_stm32f3xx\*.map pause diff --git a/doc/build/hal-stm32f3/makehtml.sh b/doc/build/hal-stm32f3/makehtml.sh index 985e4b0e8..8bbf79eda 100755 --- a/doc/build/hal-stm32f3/makehtml.sh +++ b/doc/build/hal-stm32f3/makehtml.sh @@ -1,6 +1,6 @@ #!/bin/bash -rm html/* +rm ../../manuals/html/hal_stm32f3xx/* doxygen Doxyfile_html -rm html/*.md5 -rm html/*.map +rm ../../manuals/html/hal_stm32f3xx/*.md5 +rm ../../manuals/html/hal_stm32f3xx/*.map diff --git a/doc/build/hal/Doxyfile_chm b/doc/build/hal/Doxyfile_chm index 4eb4764f5..d8e802ce2 100644 --- a/doc/build/hal/Doxyfile_chm +++ b/doc/build/hal/Doxyfile_chm @@ -853,14 +853,14 @@ WARN_LOGFILE = # Note: If this tag is empty the current directory is searched. INPUT = ./src \ - ../../os/hal/dox \ - ../../os/hal/src \ - ../../os/hal/include \ - ../../os/hal/lib/streams \ - ../../os/hal/lib/complex/mfs \ - ../../os/hal/lib/complex/serial_nor \ - ../../os/hal/templates \ - ../../os/hal/templates/osal + ../../../os/hal/dox \ + ../../../os/hal/src \ + ../../../os/hal/include \ + ../../../os/hal/lib/streams \ + ../../../os/hal/lib/complex/mfs \ + ../../../os/hal/lib/complex/serial_nor \ + ../../../os/hal/templates \ + ../../../os/hal/templates/osal # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -1198,7 +1198,7 @@ GENERATE_HTML = YES # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_OUTPUT = html +HTML_OUTPUT = ../../manuals/html/hal # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). @@ -1410,7 +1410,7 @@ GENERATE_HTMLHELP = YES # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. -CHM_FILE = ../../ChibiOS_HAL.chm +CHM_FILE = ../../../manuals/ChibiOS_HAL.chm # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler (hhc.exe). If non-empty, diff --git a/doc/build/hal/Doxyfile_html b/doc/build/hal/Doxyfile_html index b7a39df84..9ca6fbdd9 100644 --- a/doc/build/hal/Doxyfile_html +++ b/doc/build/hal/Doxyfile_html @@ -853,14 +853,14 @@ WARN_LOGFILE = # Note: If this tag is empty the current directory is searched. INPUT = ./src \ - ../../os/hal/dox \ - ../../os/hal/src \ - ../../os/hal/include \ - ../../os/hal/lib/streams \ - ../../os/hal/lib/complex/mfs \ - ../../os/hal/lib/complex/serial_nor \ - ../../os/hal/templates \ - ../../os/hal/templates/osal + ../../../os/hal/dox \ + ../../../os/hal/src \ + ../../../os/hal/include \ + ../../../os/hal/lib/streams \ + ../../../os/hal/lib/complex/mfs \ + ../../../os/hal/lib/complex/serial_nor \ + ../../../os/hal/templates \ + ../../../os/hal/templates/osal # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -1198,7 +1198,7 @@ GENERATE_HTML = YES # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_OUTPUT = html +HTML_OUTPUT = ../../manuals/html/hal # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). @@ -1410,7 +1410,7 @@ GENERATE_HTMLHELP = NO # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. -CHM_FILE = ../../ChibiOS_HAL.chm +CHM_FILE = ../../../manuals/ChibiOS_HAL.chm # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler (hhc.exe). If non-empty, diff --git a/doc/build/hal/makechm.bat b/doc/build/hal/makechm.bat index 0749cab51..eb705016e 100644 --- a/doc/build/hal/makechm.bat +++ b/doc/build/hal/makechm.bat @@ -1,5 +1,5 @@ -del html\*.* /Q +del ..\..\manuals\html\hal\*.* /Q doxygen Doxyfile_chm -del html\*.md5 -del html\*.map +del ..\..\manuals\html\hal\*.md5 +del ..\..\manuals\html\hal\*.map pause diff --git a/doc/build/hal/makehtml.bat b/doc/build/hal/makehtml.bat index 2becc1036..22622bd0b 100644 --- a/doc/build/hal/makehtml.bat +++ b/doc/build/hal/makehtml.bat @@ -1,5 +1,5 @@ -del html\*.* /Q +del ..\..\manuals\html\hal\*.* /Q doxygen Doxyfile_html -del html\*.md5 -del html\*.map +del ..\..\manuals\html\hal\*.md5 +del ..\..\manuals\html\hal\*.map pause diff --git a/doc/build/hal/makehtml.sh b/doc/build/hal/makehtml.sh index 985e4b0e8..0b5074b19 100755 --- a/doc/build/hal/makehtml.sh +++ b/doc/build/hal/makehtml.sh @@ -1,6 +1,6 @@ #!/bin/bash -rm html/* +rm ../../manuals/html/hal/* doxygen Doxyfile_html -rm html/*.md5 -rm html/*.map +rm ../../manuals/html/hal/*.md5 +rm ../../manuals/html/hal/*.map diff --git a/doc/build/nil/Doxyfile_chm b/doc/build/nil/Doxyfile_chm index 23e661e25..451b5cce0 100644 --- a/doc/build/nil/Doxyfile_chm +++ b/doc/build/nil/Doxyfile_chm @@ -853,13 +853,13 @@ WARN_LOGFILE = # Note: If this tag is empty the current directory is searched. INPUT = ./src \ - ../../os/nil/dox \ - ../../os/nil/src \ - ../../os/nil/include \ - ../../os/nil/templates \ - ../../os/oslib/dox \ - ../../os/oslib/src \ - ../../os/oslib/include + ../../../os/nil/dox \ + ../../../os/nil/src \ + ../../../os/nil/include \ + ../../../os/nil/templates \ + ../../../os/oslib/dox \ + ../../../os/oslib/src \ + ../../../os/oslib/include # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -1197,7 +1197,7 @@ GENERATE_HTML = YES # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_OUTPUT = html +HTML_OUTPUT = ../../manuals/html/nil # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). @@ -1409,7 +1409,7 @@ GENERATE_HTMLHELP = YES # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. -CHM_FILE = ../../ChibiOS_NIL.chm +CHM_FILE = ../../../manuals/ChibiOS_NIL.chm # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler (hhc.exe). If non-empty, diff --git a/doc/build/nil/Doxyfile_html b/doc/build/nil/Doxyfile_html index 4eadcb069..1a2e80822 100644 --- a/doc/build/nil/Doxyfile_html +++ b/doc/build/nil/Doxyfile_html @@ -853,13 +853,13 @@ WARN_LOGFILE = # Note: If this tag is empty the current directory is searched. INPUT = ./src \ - ../../os/nil/dox \ - ../../os/nil/src \ - ../../os/nil/include \ - ../../os/nil/templates \ - ../../os/oslib/dox \ - ../../os/oslib/src \ - ../../os/oslib/include + ../../../os/nil/dox \ + ../../../os/nil/src \ + ../../../os/nil/include \ + ../../../os/nil/templates \ + ../../../os/oslib/dox \ + ../../../os/oslib/src \ + ../../../os/oslib/include # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -1197,7 +1197,7 @@ GENERATE_HTML = YES # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_OUTPUT = html +HTML_OUTPUT = ../../manuals/html/nil # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). @@ -1409,7 +1409,7 @@ GENERATE_HTMLHELP = NO # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. -CHM_FILE = ../../ChibiOS_NIL.chm +CHM_FILE = ../../../manuals/ChibiOS_NIL.chm # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler (hhc.exe). If non-empty, diff --git a/doc/build/nil/index.html b/doc/build/nil/index.html deleted file mode 100644 index bf4fe4e3f..000000000 --- a/doc/build/nil/index.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/doc/build/nil/makechm.bat b/doc/build/nil/makechm.bat index 0749cab51..219d7f7cf 100644 --- a/doc/build/nil/makechm.bat +++ b/doc/build/nil/makechm.bat @@ -1,5 +1,5 @@ -del html\*.* /Q +del ..\..\manuals\html\nil\*.* /Q doxygen Doxyfile_chm -del html\*.md5 -del html\*.map +del ..\..\manuals\html\nil\*.md5 +del ..\..\manuals\html\nil\*.map pause diff --git a/doc/build/nil/makehtml.bat b/doc/build/nil/makehtml.bat index 2becc1036..a09c24630 100644 --- a/doc/build/nil/makehtml.bat +++ b/doc/build/nil/makehtml.bat @@ -1,5 +1,5 @@ -del html\*.* /Q +del ..\..\manuals\html\nil\*.* /Q doxygen Doxyfile_html -del html\*.md5 -del html\*.map +del ..\..\manuals\html\nil\*.md5 +del ..\..\manuals\html\nil\*.map pause diff --git a/doc/build/nil/makehtml.sh b/doc/build/nil/makehtml.sh index 985e4b0e8..699cfc0fb 100755 --- a/doc/build/nil/makehtml.sh +++ b/doc/build/nil/makehtml.sh @@ -1,6 +1,6 @@ #!/bin/bash -rm html/* +rm ../../manuals/html/nil/* doxygen Doxyfile_html -rm html/*.md5 -rm html/*.map +rm ../../manuals/html/nil/*.md5 +rm ../../manuals/html/nil/*.map diff --git a/doc/build/rt/Doxyfile_chm b/doc/build/rt/Doxyfile_chm index 182a4ca74..c4b842c4d 100644 --- a/doc/build/rt/Doxyfile_chm +++ b/doc/build/rt/Doxyfile_chm @@ -1199,7 +1199,7 @@ GENERATE_HTML = YES # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_OUTPUT = html +HTML_OUTPUT = ../../manuals/html/rt # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). @@ -1411,7 +1411,7 @@ GENERATE_HTMLHELP = YES # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. -CHM_FILE = ../../ChibiOS_RT.chm +CHM_FILE = ../../../manuals/ChibiOS_RT.chm # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler (hhc.exe). If non-empty, diff --git a/doc/build/rt/Doxyfile_html b/doc/build/rt/Doxyfile_html index 465f25b6a..a81b88578 100644 --- a/doc/build/rt/Doxyfile_html +++ b/doc/build/rt/Doxyfile_html @@ -854,14 +854,14 @@ WARN_LOGFILE = INPUT = ./src \ ../common/src \ - ../../os/license \ - ../../os/rt/dox \ - ../../os/rt/src \ - ../../os/rt/include \ - ../../os/rt/templates \ - ../../os/oslib/dox \ - ../../os/oslib/src \ - ../../os/oslib/include + ../../../os/license \ + ../../../os/rt/dox \ + ../../../os/rt/src \ + ../../../os/rt/include \ + ../../../os/rt/templates \ + ../../../os/oslib/dox \ + ../../../os/oslib/src \ + ../../../os/oslib/include # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -1199,7 +1199,7 @@ GENERATE_HTML = YES # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_OUTPUT = html +HTML_OUTPUT = ../../manuals/html/rt # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). @@ -1411,7 +1411,7 @@ GENERATE_HTMLHELP = NO # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. -CHM_FILE = ../../ChibiOS_RT.chm +CHM_FILE = ../../../manuals/ChibiOS_RT.chm # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler (hhc.exe). If non-empty, diff --git a/doc/build/rt/index.html b/doc/build/rt/index.html deleted file mode 100644 index bf4fe4e3f..000000000 --- a/doc/build/rt/index.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/doc/build/rt/makechm.bat b/doc/build/rt/makechm.bat index 0749cab51..c41596a89 100644 --- a/doc/build/rt/makechm.bat +++ b/doc/build/rt/makechm.bat @@ -1,5 +1,5 @@ -del html\*.* /Q +del ..\..\manuals\html\rt\*.* /Q doxygen Doxyfile_chm -del html\*.md5 -del html\*.map +del ..\..\manuals\html\rt\*.md5 +del ..\..\manuals\html\rt\*.map pause diff --git a/doc/build/rt/makehtml.bat b/doc/build/rt/makehtml.bat index 2becc1036..2b9cebb8c 100644 --- a/doc/build/rt/makehtml.bat +++ b/doc/build/rt/makehtml.bat @@ -1,5 +1,5 @@ -del html\*.* /Q +del ..\..\manuals\html\rt\*.* /Q doxygen Doxyfile_html -del html\*.md5 -del html\*.map +del ..\..\manuals\html\rt\*.md5 +del ..\..\manuals\html\rt\*.map pause diff --git a/doc/build/rt/makehtml.sh b/doc/build/rt/makehtml.sh index 985e4b0e8..c36c63b31 100755 --- a/doc/build/rt/makehtml.sh +++ b/doc/build/rt/makehtml.sh @@ -1,6 +1,6 @@ #!/bin/bash -rm html/* +rm ../../manuals/html/rt/* doxygen Doxyfile_html -rm html/*.md5 -rm html/*.map +rm ../../manuals/html/rt/*.md5 +rm ../../manuals/html/rt/*.map diff --git a/doc/build/ex/index.html b/doc/manuals/ex.html similarity index 60% rename from doc/build/ex/index.html rename to doc/manuals/ex.html index bf4fe4e3f..8b88188ad 100644 --- a/doc/build/ex/index.html +++ b/doc/manuals/ex.html @@ -1,7 +1,7 @@ - +