diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-06-19 17:48:06 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-06-19 17:48:06 +0000 |
commit | 6573c996b89bf64f206010059e6b63f7e65d7deb (patch) | |
tree | 2d807b29f6c4d16e05f0f07b66ac15dd1cb8c4c2 /docs | |
parent | c110423fa9903a0de5c69b5ed5c57f0bb4af7f6b (diff) | |
download | external_llvm-6573c996b89bf64f206010059e6b63f7e65d7deb.zip external_llvm-6573c996b89bf64f206010059e6b63f7e65d7deb.tar.gz external_llvm-6573c996b89bf64f206010059e6b63f7e65d7deb.tar.bz2 |
Indent coding examples.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158728 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Projects.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/Projects.rst b/docs/Projects.rst index e5280fa..ea94ffd 100644 --- a/docs/Projects.rst +++ b/docs/Projects.rst @@ -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``. |