Re-enable support for --program-prefix.
[oota-llvm.git] / docs / programming.rst
index a23402276dd8e05a93e725769517b528532ed78f..5d000cb3c2e341f8729b93acdca27a85539c302e 100644 (file)
@@ -3,21 +3,32 @@
 Programming Documentation
 =========================
 
+.. toctree::
+   :hidden:
+
+   CodingStandards
+   CommandLine
+   Atomics
+
 * `LLVM Language Reference Manual <LangRef.html>`_
 
   Defines the LLVM intermediate representation and the assembly form of the
   different nodes.
 
+* :ref:`atomics`
+
+  Information about LLVM's concurrency model.
+
 * `The LLVM Programmers Manual <ProgrammersManual.html>`_
 
   Introduction to the general layout of the LLVM sourcebase, important classes
   and APIs, and some tips & tricks.
 
-* `CommandLine library Reference Manual <CommandLine.html>`_
+* :ref:`commandline`
 
   Provides information on using the command line parsing library.
 
-* `LLVM Coding standards <CodingStandards.html>`_
+* :ref:`coding_standards`
 
   Details the LLVM coding standards and provides useful information on writing
   efficient C++ code.