[llvm-commits] [llvm] r171006 - /llvm/trunk/docs/MakefileGuide.rst
Dmitri Gribenko
gribozavr at gmail.com
Sun Dec 23 10:46:11 PST 2012
Author: gribozavr
Date: Sun Dec 23 12:46:11 2012
New Revision: 171006
URL: http://llvm.org/viewvc/llvm-project?rev=171006&view=rev
Log:
Documentation: fix typos reported in PR13866
Modified:
llvm/trunk/docs/MakefileGuide.rst
Modified: llvm/trunk/docs/MakefileGuide.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/MakefileGuide.rst?rev=171006&r1=171005&r2=171006&view=diff
==============================================================================
--- llvm/trunk/docs/MakefileGuide.rst (original)
+++ llvm/trunk/docs/MakefileGuide.rst Sun Dec 23 12:46:11 2012
@@ -60,7 +60,7 @@
directory and declare values for certain variables. The variables and values
that you select determine what the makefile system will do. These variables
enable rules and processing in the makefile system that automatically Do The
-Right Thing™.
+Right Thing (C).
Including Makefiles
-------------------
@@ -241,7 +241,7 @@
says that we are to build a tool name ``mytool`` and that it requires three
libraries: ``mylib``, ``LLVMSupport.a`` and ``LLVMSystem.a``.
-Note that two different variables are use to indicate which libraries are
+Note that two different variables are used to indicate which libraries are
linked: ``USEDLIBS`` and ``LLVMLIBS``. This distinction is necessary to support
projects. ``LLVMLIBS`` refers to the LLVM libraries found in the LLVM object
directory. ``USEDLIBS`` refers to the libraries built by your project. In the
@@ -349,7 +349,7 @@
directory. It is invoked by the ``check`` target elsewhere. Each project is
free to define the actions of ``check-local`` as appropriate for that
project. The LLVM project itself uses dejagnu to run a suite of feature and
-regresson tests. Other projects may choose to use dejagnu or any other testing
+regression tests. Other projects may choose to use dejagnu or any other testing
mechanism.
``clean``
@@ -358,7 +358,7 @@
This target cleans the build directory, recursively removing all things that the
Makefile builds. The cleaning rules have been made guarded so they shouldn't go
awry (via ``rm -f $(UNSET_VARIABLE)/*`` which will attempt to erase the entire
-directory structure.
+directory structure).
``clean-local``
---------------
@@ -606,8 +606,8 @@
the build process, such as code generators (e.g. ``tblgen``).
``OPTIONAL_DIRS``
- Specify a set of directories that may be built, if they exist, but its not
- an error for them not to exist.
+ Specify a set of directories that may be built, if they exist, but it is
+ not an error for them not to exist.
``PARALLEL_DIRS``
Specify a set of directories to build recursively and in parallel if the
More information about the llvm-commits
mailing list