Un-indent list to remove ugly back-slash.
[oota-llvm.git] / docs / development_process.rst
1 .. _development_process:
2
3 Development Process Documentation
4 =================================
5
6 .. toctree::
7    :hidden:
8
9    CodingStandards
10    MakefileGuide
11    Projects
12
13 * :ref:`projects`
14
15   How-to guide and templates for new projects that *use* the LLVM
16   infrastructure.  The templates (directory organization, Makefiles, and test
17   tree) allow the project code to be located outside (or inside) the ``llvm/``
18   tree, while using LLVM header files and libraries.
19
20 * :ref:`coding_standards`
21
22   Describes a few coding standards that are used in the LLVM source tree. All
23   code submissions must follow the coding standards before being allowed into
24   the source tree.
25
26 * `LLVMBuild Documentation <LLVMBuild.html>`_
27
28   Describes the LLVMBuild organization and files used by LLVM to specify
29   component descriptions.
30
31 * :ref:`makefile_guide`
32
33   Describes how the LLVM makefiles work and how to use them.
34
35 * `How To Release LLVM To The Public <HowToReleaseLLVM.html>`_
36
37   This is a guide to preparing LLVM releases. Most developers can ignore it.