From 54dc8b2a44cd4379968879d376e696a8f92adc82 Mon Sep 17 00:00:00 2001 From: Tanya Lattner Date: Wed, 8 Dec 2004 18:13:51 +0000 Subject: [PATCH] Fixed broken links. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18647 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/MakefileGuide.html | 10 ++++++---- docs/WritingAnLLVMPass.html | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/MakefileGuide.html b/docs/MakefileGuide.html index 42c2b1cea91..7e70f3aabed 100644 --- a/docs/MakefileGuide.html +++ b/docs/MakefileGuide.html @@ -246,7 +246,7 @@

In some situations, it is desireable to build a single bytecode module from a variety of sources, instead of an archive, shared library, or bytecode library. Bytecode modules can be specified in addition to any of the other - types of libraries by defining the MODULE_NAME + types of libraries by defining the MODULE_NAME variable. For example:


       LIBRARYNAME = mylib
@@ -414,10 +414,10 @@
 
 

This target can be invoked from anywhere within a project's directories - but always invokes the check-local target + but always invokes the check-local target in the project's test directory, if it exists and has a Makefile. A warning is produced otherwise. If - TESTSUITE is defined on the make + TESTSUITE is defined on the make command line, it will be passed down to the invocation of make check-local in the test directory. The intended usage for this is to assist in running specific suites of tests. If @@ -608,7 +608,7 @@ files that are not automatically distributed.

FAKE_SOURCES(optional)
-
This variable is like SOURCES except that +
This variable is like SOURCES except that the source files don't need to exist. The makefiles only use FAKE_SOURCES to create the names of derived objects that should be included in the directory's result. It is assumed that the project's @@ -658,6 +658,8 @@
Specifies the name of the LLVM code generation target that the current directory builds. Setting this variable enables additional rules to build .inc files from .td files.
+
TESTSUITE
+
Specifies the directory of tests to run in llvm/test.
TOOLNAME
Specifies the name of the tool that the current directory should build.
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index 7b90db352bc..65a1e0e30cb 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -1212,7 +1212,7 @@ pass is the default implementation for the interface.

The Statistic +href="http://llvm.cs.uiuc.edu/doxygen/Statistic_8h-source.html">Statistic class, is designed to be an easy way to expose various success metrics from passes. These statistics are printed at the end of a run, when the -stats command line option is enabled on the command -- 2.34.1