diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-04-23 00:30:22 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-04-23 00:30:22 +0000 |
commit | aa3d6242cfb3a21922f7ec13cbd5b65303a51f80 (patch) | |
tree | 9e983f7f24dd1e366320629556b37e9d9f58cb78 /llvm/docs/Projects.html | |
parent | 576273cf5629429e757c2de2448ebf022524c069 (diff) | |
download | bcm5719-llvm-aa3d6242cfb3a21922f7ec13cbd5b65303a51f80.tar.gz bcm5719-llvm-aa3d6242cfb3a21922f7ec13cbd5b65303a51f80.zip |
docs: Introduce cascading style <div> and <p> continued on <h[2-5]>.
<h2>Section Example</h2>
<div> <!-- h2+div is applied -->
<p>Section preamble.</p>
<h3>Subsection Example</h3>
<p> <!-- h3+p is applied -->
Subsection body
</p>
<!-- End of section body -->
</div>
FIXME: Care H5 better.
llvm-svn: 130040
Diffstat (limited to 'llvm/docs/Projects.html')
-rw-r--r-- | llvm/docs/Projects.html | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/llvm/docs/Projects.html b/llvm/docs/Projects.html index 8ba87837649..1ee53c05033 100644 --- a/llvm/docs/Projects.html +++ b/llvm/docs/Projects.html @@ -33,7 +33,7 @@ <h2><a name="overview">Overview</a></h2> <!-- *********************************************************************** --> -<div class="doc_text"> +<div> <p>The LLVM build system is designed to facilitate the building of third party projects that use LLVM header files, libraries, and tools. In order to use @@ -78,7 +78,7 @@ provide enough information on how to write your own Makefiles.</p> </h2> <!-- *********************************************************************** --> -<div class="doc_text"> +<div> <p>Follow these simple steps to start your project:</p> @@ -150,7 +150,7 @@ project should build.</p> </h2> <!-- *********************************************************************** --> -<div class="doc_text"> +<div> <p>In order to use the LLVM build system, you will want to organize your source code so that it can benefit from the build system's features. @@ -235,21 +235,19 @@ your <b>tools</b> directory.</p> </h2> <!-- *********************************************************************** --> -<div class="doc_text"> +<div> <p>The LLVM build system provides a convenient way to build libraries and executables. Most of your project Makefiles will only need to define a few variables. Below is a list of the variables one can set and what they can do:</p> -</div> - <!-- ======================================================================= --> <h3> <a name="reqVars">Required Variables</a> </h3> -<div class="doc_text"> +<div> <dl> <dt>LEVEL @@ -267,7 +265,7 @@ do:</p> <a name="varsBuildDir">Variables for Building Subdirectories</a> </h3> -<div class="doc_text"> +<div> <dl> <dt>DIRS @@ -298,7 +296,7 @@ do:</p> <a name="varsBuildLib">Variables for Building Libraries</a> </h3> -<div class="doc_text"> +<div> <dl> <dt>LIBRARYNAME @@ -329,7 +327,7 @@ do:</p> <a name="varsBuildProg">Variables for Building Programs</a> </h3> -<div class="doc_text"> +<div> <dl> <dt>TOOLNAME @@ -372,7 +370,7 @@ do:</p> <a name="miscVars">Miscellaneous Variables</a> </h3> -<div class="doc_text"> +<div> <dl> <dt>ExtraSource @@ -398,13 +396,15 @@ do:</p> </div> +</div> + <!-- *********************************************************************** --> <h2> <a name="objcode">Placement of Object Code</a> </h2> <!-- *********************************************************************** --> -<div class="doc_text"> +<div> <p>The final location of built libraries and executables will depend upon whether you do a Debug, Release, or Profile build.</p> @@ -432,7 +432,7 @@ whether you do a Debug, Release, or Profile build.</p> </h2> <!-- *********************************************************************** --> -<div class="doc_text"> +<div> <p>If you have any questions or need any help creating an LLVM project, the LLVM team would be more than happy to help. You can always post your |