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 | f5af6ada3b0570db1afc19029cad8fb8320676ef (patch) | |
tree | 4df12ad7fe5c5902fd8601d164291a94fa078f10 /docs/Projects.html | |
parent | 624dc1d4abf26a3ccd474f85a39058a99a9053ca (diff) |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130040 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/Projects.html')
-rw-r--r-- | docs/Projects.html | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/docs/Projects.html b/docs/Projects.html index 8ba8783764..1ee53c0503 100644 --- a/docs/Projects.html +++ b/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 |