From 3fecb446f91b291904163d77f53bac682dc8a2dd Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Sun, 7 Nov 2004 22:42:37 +0000 Subject: [PATCH] * Fix file-relative links: they need '#' prepended to the target name * Balance an open parenthesis git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17595 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/MakefileGuide.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/MakefileGuide.html b/docs/MakefileGuide.html index a82bfaf16b2..cb2cba5d280 100644 --- a/docs/MakefileGuide.html +++ b/docs/MakefileGuide.html @@ -136,11 +136,11 @@ Makefile. This is the file first read by make. It has three sections:

    -
  1. Settable Variables - Required that must be set +
  2. Settable Variables - Required that must be set first.
  3. -
  4. include $(LEVEL)/Makefile.common +
  5. include $(LEVEL)/Makefile.common - include the LLVM Makefile system. -
  6. Override Variables - Override variables set by +
  7. Override Variables - Override variables set by the LLVM Makefile system.
@@ -154,12 +154,12 @@
  1. It includes the project's configuration makefile to obtain values determined by the configure script. This is done by including the - $(LEVEL)/Makefile.config file.
  2. + $(LEVEL)/Makefile.config file.
  3. It specifies any other (static) values that are needed throughout the project. Only values that are used in all or a large proportion of the project's directories should be placed here.
  4. It includes the standard rules for the LLVM Makefile system, - $(LLVM_SRC_ROOT)/Makefile.rules. + $(LLVM_SRC_ROOT)/Makefile.rules. This file is the "guts" of the LLVM Makefile system.
@@ -184,7 +184,7 @@

This file, located at $(LLVM_SRC_ROOT)/Makefile.rules is the heart of the LLVM Makefile System. It provides all the logic, dependencies, and rules for building the targets supported by the system. What it does largely - depends on the values of make variables that + depends on the values of make variables that have been set before Makefile.rules is included. @@ -469,7 +469,7 @@

Control Variables

Variables listed in the table below should be set before the - inclusion of $(LEVEL)/Makefile.common. + inclusion of $(LEVEL)/Makefile.common. These variables provide input to the LLVM make system that tell it what to do for the current directory.

@@ -583,7 +583,7 @@
  • On the make command line -- recommended.
  • On the configure command line
  • In the Makefile (only after the inclusion of $(LEVEL)/Makefile.common.
  • + href="#Makefile.common">$(LEVEL)/Makefile.common).

    The overridable variables are given below: