summaryrefslogtreecommitdiff
path: root/docs/Projects.rst
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-06-19 17:43:57 +0000
committerBill Wendling <isanbard@gmail.com>2012-06-19 17:43:57 +0000
commitc110423fa9903a0de5c69b5ed5c57f0bb4af7f6b (patch)
treecffd7f98199da65ad543cba193fa300325d859d6 /docs/Projects.rst
parent2a79116940012acaad9cc70efef79d7359f27513 (diff)
downloadllvm-c110423fa9903a0de5c69b5ed5c57f0bb4af7f6b.tar.gz
llvm-c110423fa9903a0de5c69b5ed5c57f0bb4af7f6b.tar.bz2
llvm-c110423fa9903a0de5c69b5ed5c57f0bb4af7f6b.tar.xz
Remove bad HTML tags. Add missing :.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158726 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/Projects.rst')
-rw-r--r--docs/Projects.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/Projects.rst b/docs/Projects.rst
index 5935aeb937..e5280fa580 100644
--- a/docs/Projects.rst
+++ b/docs/Projects.rst
@@ -273,14 +273,14 @@ Variables for Building Programs
``LIBS``
- To link dynamic libraries, add <tt>-l&lt;library base name&gt;</tt> to the
- ``LIBS`` variable. The LLVM build system will look in the same places for
- dynamic libraries as it does for static libraries.
+ To link dynamic libraries, add ``-l<library base name>`` to the ``LIBS``
+ variable. The LLVM build system will look in the same places for dynamic
+ libraries as it does for static libraries.
For example, to link ``libsample.so``, you would have the following line in
your ``Makefile``:
-.. code-block: Makefile
+.. code-block:: Makefile
LIBS += -lsample