Fixing the documentation builds

I broke the documentation builds when I deleted the MakefileGuide as part of the autoconf removal. At some point I'll need to do a more in-depth pass updating the documentation to remove references to the old build system.

llvm-svn: 258873
This commit is contained in:
Chris Bieneman 2016-01-26 22:53:12 +00:00
parent 90d9e8d370
commit bcc6f1913f
4 changed files with 4 additions and 17 deletions

View File

@ -203,7 +203,7 @@ source code:
If you need to update your bitcode libraries, this is the target to use once
you've built them.
Please see the `Makefile Guide <MakefileGuide.html>`_ for further details on
Please see the `CMake <CMake.html>`_ documentation for further details on
these ``make`` targets and descriptions of other targets available.
It is also possible to override default values from ``configure`` by declaring

View File

@ -49,8 +49,7 @@ Build Integration
The LLVMBuild files themselves are just a declarative way to describe
the project structure. The actual building of the LLVM project is
handled by another build system (currently we support both
:doc:`Makefiles <MakefileGuide>` and :doc:`CMake <CMake>`).
handled by another build system (See: :doc:`CMake <CMake>`).
The build system implementation will load the relevant contents of the
LLVMBuild files and use that to drive the actual project build.

View File

@ -99,19 +99,11 @@ is in the ``test-suite`` module. See :ref:`test-suite Quickstart
Regression tests
----------------
To run all of the LLVM regression tests, use the master Makefile in the
``llvm/test`` directory. LLVM Makefiles require GNU Make (read the :doc:`LLVM
Makefile Guide <MakefileGuide>` for more details):
To run all of the LLVM regression tests use the check-llvm target:
.. code-block:: bash
% make -C llvm/test
or:
.. code-block:: bash
% make check
% make check-llvm
If you have `Clang <http://clang.llvm.org/>`_ checked out and built, you
can run the LLVM and Clang tests simultaneously using:

View File

@ -384,7 +384,6 @@ Information about LLVM's development process.
:hidden:
DeveloperPolicy
MakefileGuide
Projects
LLVMBuild
HowToReleaseLLVM
@ -405,9 +404,6 @@ Information about LLVM's development process.
Describes the LLVMBuild organization and files used by LLVM to specify
component descriptions.
:doc:`MakefileGuide`
Describes how the LLVM makefiles work and how to use them.
:doc:`HowToReleaseLLVM`
This is a guide to preparing LLVM releases. Most developers can ignore it.