diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-11-02 15:56:58 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-11-02 15:56:58 +0000 |
commit | 30288277d98c61f9f6c305ee92c315b591960ea0 (patch) | |
tree | 2917a6ce75a03c3dae60172ca162d62cfffa97b4 | |
parent | 1bb568d2a5ffc173f1332415650ae45fcd9e79ab (diff) | |
download | external_llvm-30288277d98c61f9f6c305ee92c315b591960ea0.zip external_llvm-30288277d98c61f9f6c305ee92c315b591960ea0.tar.gz external_llvm-30288277d98c61f9f6c305ee92c315b591960ea0.tar.bz2 |
docs: Separate development process type of documentation from programming
documentation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143543 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/index.html | 38 |
1 files changed, 22 insertions, 16 deletions
diff --git a/docs/index.html b/docs/index.html index 1de7c7b..4cb2710 100644 --- a/docs/index.html +++ b/docs/index.html @@ -19,8 +19,9 @@ your documentation.</p> <li><a href="#llvmdesign">LLVM Design</a></li> <li><a href="/pubs/">LLVM Publications</a></li> <li><a href="#userguide">LLVM User Guides</a></li> - <li><a href="#llvmprog">General LLVM Programming Documentation</a></li> + <li><a href="#llvmprog">LLVM Programming Documentation</a></li> <li><a href="#subsystems">LLVM Subsystem Documentation</a></li> + <li><a href="#develprocess">LLVM Programming Documentation</a></li> <li><a href="#maillist">LLVM Mailing Lists</a></li> </ul> </td><td class="right"> @@ -137,7 +138,7 @@ LLVM buildbot master.</li> <!--=======================================================================--> -<h2><a name="llvmprog">General LLVM Programming Documentation</a></h2> +<h2><a name="llvmprog">LLVM Programming Documentation</a></h2> <!--=======================================================================--> <ul> @@ -148,15 +149,6 @@ intermediate representation and the assembly form of the different nodes.</li> Introduction to the general layout of the LLVM sourcebase, important classes and APIs, and some tips & tricks.</li> -<li><a href="Projects.html">LLVM Project Guide</a> - How-to guide and -templates for new projects that <em>use</em> the LLVM infrastructure. The -templates (directory organization, Makefiles, and test tree) allow the project -code to be located outside (or inside) the <tt>llvm/</tt> tree, while using LLVM -header files and libraries.</li> - -<li><a href="MakefileGuide.html">LLVM Makefile Guide</a> - Describes how the -LLVM makefiles work and how to use them.</li> - <li><a href="CommandLine.html">CommandLine library Reference Manual</a> - Provides information on using the command line parsing library.</li> @@ -167,10 +159,6 @@ efficient C++ code.</li> <li><a href="ExtendingLLVM.html">Extending LLVM</a> - Look here to see how to add instructions and intrinsics to LLVM.</li> -<li><a href="HowToReleaseLLVM.html">How To Release LLVM To The Public</a> - This -is a guide to preparing LLVM releases. Most developers can ignore it.</li> - - <li><a href="http://llvm.org/doxygen/">Doxygen generated documentation</a> (<a href="http://llvm.org/doxygen/inherits.html">classes</a>) @@ -244,6 +232,25 @@ information about Branch Prediction Information.</li> </ul> +<!--=======================================================================--> +<h2><a name="develprocess">LLVM Development Process Documentation</a></h2> +<!--=======================================================================--> + +<ul> + +<li><a href="Projects.html">LLVM Project Guide</a> - How-to guide and +templates for new projects that <em>use</em> the LLVM infrastructure. The +templates (directory organization, Makefiles, and test tree) allow the project +code to be located outside (or inside) the <tt>llvm/</tt> tree, while using LLVM +header files and libraries.</li> + +<li><a href="MakefileGuide.html">LLVM Makefile Guide</a> - Describes how the +LLVM makefiles work and how to use them.</li> + +<li><a href="HowToReleaseLLVM.html">How To Release LLVM To The Public</a> - This +is a guide to preparing LLVM releases. Most developers can ignore it.</li> + +</ul> <!--=======================================================================--> <h2><a name="maillist">LLVM Mailing Lists</a></h2> @@ -290,4 +297,3 @@ times each day, making it a high volume list.</li> Last modified: $Date$ </address> </body></html> - |