[llvm-commits] CVS: llvm/docs/MakefileGuide.html WritingAnLLVMPass.html

Tanya Brethour tbrethou at cs.uiuc.edu
Wed Dec 8 10:14:07 PST 2004



Changes in directory llvm/docs:

MakefileGuide.html updated: 1.20 -> 1.21
WritingAnLLVMPass.html updated: 1.35 -> 1.36
---
Log message:

Fixed broken links.


---
Diffs of the changes:  (+9 -7)

Index: llvm/docs/MakefileGuide.html
diff -u llvm/docs/MakefileGuide.html:1.20 llvm/docs/MakefileGuide.html:1.21
--- llvm/docs/MakefileGuide.html:1.20	Tue Dec  7 22:26:23 2004
+++ llvm/docs/MakefileGuide.html	Wed Dec  8 12:13:51 2004
@@ -246,7 +246,7 @@
   <p>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 <a href="MODULE_NAME">MODULE_NAME</a>
+  types of libraries by defining the <a href="#MODULE_NAME">MODULE_NAME</a>
   variable. For example:</p>
   <pre><tt>
       LIBRARYNAME = mylib
@@ -414,10 +414,10 @@
 <div class="doc_subsection"><a name="check">check</a></div>
 <div class="doc_text">
   <p>This target can be invoked from anywhere within a project's directories
-  but always invokes the <a href="check-local"><tt>check-local</tt></a> target 
+  but always invokes the <a href="#check-local"><tt>check-local</tt></a> target 
   in the project's <tt>test</tt> directory, if it exists and has a 
   <tt>Makefile</tt>. A warning is produced otherwise.  If 
-  <a href="TESTSUITE"><tt>TESTSUITE</tt></a> is defined on the <tt>make</tt>
+  <a href="#TESTSUITE"><tt>TESTSUITE</tt></a> is defined on the <tt>make</tt>
   command line, it will be passed down to the invocation of 
   <tt>make check-local</tt> in the <tt>test</tt> 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.</dd>
     <dt><a name="FAKE_SOURCES"><tt>FAKE_SOURCES</tt><small>(optional)</small>
     </a></dt>
-    <dd>This variable is like <a href="SOURCES"><tt>SOURCES</tt></a> except that
+    <dd>This variable is like <a href="#SOURCES"><tt>SOURCES</tt></a> except that
     the source files don't need to exist. The makefiles only use
     <tt>FAKE_SOURCES</tt> 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 @@
     <dd>Specifies the name of the LLVM code generation target that the
     current directory builds. Setting this variable enables additional rules to
     build <tt>.inc</tt> files from <tt>.td</tt> files. </dd>
+    <dt><a name="TESTSUITE"><tt>TESTSUITE</tt></a></dt>
+    <dd>Specifies the directory of tests to run in <tt>llvm/test</tt>.</dd>
     <dt><a name="TOOLNAME"><tt>TOOLNAME</tt></a></dt>
     <dd>Specifies the name of the tool that the current directory should
     build.</dd>
@@ -951,7 +953,7 @@
 
   <a href="mailto:rspencer at x10sys.com">Reid Spencer</a><br>
   <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2004/12/08 04:26:23 $
+  Last modified: $Date: 2004/12/08 18:13:51 $
 </address>
 
 </body>


Index: llvm/docs/WritingAnLLVMPass.html
diff -u llvm/docs/WritingAnLLVMPass.html:1.35 llvm/docs/WritingAnLLVMPass.html:1.36
--- llvm/docs/WritingAnLLVMPass.html:1.35	Thu Nov 18 19:26:37 2004
+++ llvm/docs/WritingAnLLVMPass.html	Wed Dec  8 12:13:51 2004
@@ -1212,7 +1212,7 @@
 
 <div class="doc_text">
 <p>The <a
-href="http:://llvm.cs.uiuc.edu/doxygen/Statistic_8h-source.html"><tt>Statistic</tt></a>
+href="http://llvm.cs.uiuc.edu/doxygen/Statistic_8h-source.html"><tt>Statistic</tt></a>
 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
@@ -1589,7 +1589,7 @@
 
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2004/11/19 01:26:37 $
+  Last modified: $Date: 2004/12/08 18:13:51 $
 </address>
 
 </body>






More information about the llvm-commits mailing list