Indent coding examples.

llvm-svn: 158728
This commit is contained in:
Bill Wendling 2012-06-19 17:48:06 +00:00
parent 47297636fd
commit 7f0d23e427
1 changed files with 5 additions and 5 deletions

View File

@ -85,10 +85,10 @@ Follow these simple steps to start your project:
with these commands. (You must be using ``Autoconf`` version 2.59 or later
and your ``aclocal`` version should be 1.9 or later.)
.. code-block:: bash
.. code-block:: bash
% cd autoconf
% ./AutoRegen.sh
% cd autoconf
% ./AutoRegen.sh
6. Run ``configure`` in the directory in which you want to place object code.
Use the following options to tell your project where it can find LLVM:
@ -280,9 +280,9 @@ Variables for Building Programs
For example, to link ``libsample.so``, you would have the following line in
your ``Makefile``:
.. code-block:: Makefile
.. code-block:: Makefile
LIBS += -lsample
LIBS += -lsample
Note that ``LIBS`` must occur in the Makefile after the inclusion of
``Makefile.common``.