diff options
-rw-r--r-- | clang-tools-extra/docs/doxygen-mainpage.dox | 9 | ||||
-rw-r--r-- | clang-tools-extra/docs/doxygen.cfg.in | 14 | ||||
-rw-r--r-- | clang-tools-extra/docs/doxygen.intro | 9 |
3 files changed, 10 insertions, 22 deletions
diff --git a/clang-tools-extra/docs/doxygen-mainpage.dox b/clang-tools-extra/docs/doxygen-mainpage.dox new file mode 100644 index 00000000000..a4527b8b200 --- /dev/null +++ b/clang-tools-extra/docs/doxygen-mainpage.dox @@ -0,0 +1,9 @@ +/// \mainpage clang-tools +/// +/// \section main_intro Introduction +/// Welcome to clang tools. +/// +/// This documentation describes the **internal** software that makes +/// up clang tools, not the **external** use of clang tools. For +/// usage instructions, please see the programmer's guide or reference +/// manual. diff --git a/clang-tools-extra/docs/doxygen.cfg.in b/clang-tools-extra/docs/doxygen.cfg.in index 644a2f552e1..47054fcc2da 100644 --- a/clang-tools-extra/docs/doxygen.cfg.in +++ b/clang-tools-extra/docs/doxygen.cfg.in @@ -751,7 +751,7 @@ INPUT = \ @abs_srcdir@/../modularize \ @abs_srcdir@/../pp-trace \ @abs_srcdir@/../tool-template \ - @abs_srcdir@/doxygen.intro + @abs_srcdir@/doxygen-mainpage.dox # 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 @@ -1797,18 +1797,6 @@ GENERATE_XML = NO XML_OUTPUT = xml -# The XML_SCHEMA tag can be used to specify a XML schema, which can be used by a -# validating XML parser to check the syntax of the XML files. -# This tag requires that the tag GENERATE_XML is set to YES. - -XML_SCHEMA = - -# The XML_DTD tag can be used to specify a XML DTD, which can be used by a -# validating XML parser to check the syntax of the XML files. -# This tag requires that the tag GENERATE_XML is set to YES. - -XML_DTD = - # If the XML_PROGRAMLISTING tag is set to YES doxygen will dump the program # listings (including syntax highlighting and cross-referencing information) to # the XML output. Note that enabling this will significantly increase the size diff --git a/clang-tools-extra/docs/doxygen.intro b/clang-tools-extra/docs/doxygen.intro deleted file mode 100644 index 91cbcb9d974..00000000000 --- a/clang-tools-extra/docs/doxygen.intro +++ /dev/null @@ -1,9 +0,0 @@ -/// @mainpage clang-tools -/// -/// @section main_intro Introduction -/// Welcome to clang tools. -/// -/// This documentation describes the @b internal software that makes -/// up clang tools, not the @b external use of clang tools. For -/// usage instructions, please see the programmer's guide or reference -/// manual. |