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

Chris Lattner lattner at cs.uiuc.edu
Fri Dec 3 16:05:03 PST 2004



Changes in directory llvm/docs:

MakefileGuide.html updated: 1.16 -> 1.17
---
Log message:

Update for changes to check targets.


---
Diffs of the changes:  (+5 -30)

Index: llvm/docs/MakefileGuide.html
diff -u llvm/docs/MakefileGuide.html:1.16 llvm/docs/MakefileGuide.html:1.17
--- llvm/docs/MakefileGuide.html:1.16	Mon Nov 29 01:47:16 2004
+++ llvm/docs/MakefileGuide.html	Fri Dec  3 18:04:48 2004
@@ -41,7 +41,6 @@
       <li><a href="#all">all</a></li>
       <li><a href="#all-local">all-local</a></li>
       <li><a href="#check">check</a></li>
-      <li><a href="#check-local">check-local</a></li>
       <li><a href="#clean">clean</a></li>
       <li><a href="#clean-local">clean-local</a></li>
       <li><a href="#dist">dist</a></li>
@@ -313,8 +312,8 @@
 <div class="doc_text">
   <p>This section describes each of the targets that can be built using the LLVM
   Makefile system. Any target can be invoked from any directory but not all are
-  applicable to a given directory (e.g. "dist" and "install" will always operate
-  as if invoked from the top level directory).</p>
+  applicable to a given directory (e.g. "check", "dist", and "install" will
+  always operate as if invoked from the top level directory).</p>
 
   <table style="text-align:left">
     <tr><th>Target Name</th><th>Implied Targets</th><th>Target Description</th></tr>
@@ -324,11 +323,8 @@
     <tr><td><a href="#all-local"><tt>all-local</tt></a></td><td></td>
       <td>Compile the software in the local directory only.
     </td></tr>
-    <tr><td><a href="#check"><tt>check</tt></a></td><td>all</td>
-      <td>Test the software recursively.
-    </td></tr>
-    <tr><td><a href="#check-local"><tt>check-local</tt></a></td><td>all-local</td>
-      <td>Test the software in the local directory only.
+    <tr><td><a href="#check"><tt>check</tt></a></td><td></td>
+      <td>Change to the llvm/test directory and run regression tests.
     </td></tr>
     <tr><td><a href="#clean"><tt>clean</tt></a></td><td></td>
       <td>Remove built objects recursively.
@@ -382,27 +378,6 @@
 </div>
 
 <!-- ======================================================================= -->
-<div class="doc_subsection"><a name="check">check</a></div>
-<div class="doc_text">
-  <p>This target is used to perform any functional, unit or sanity tests as the
-  software is being built. The <tt>check</tt> target depends on the 
-  <a href="#all"><tt>all</tt></a> target so the software is built in each
-  directory first and then the "check" is applied.</p>
-  <p>The definition of "check" is pretty general. It depends on the value of the
-  <a href="#TESTS"><tt>TESTS</tt></a> variable. This variable should be set to a 
-  list of executables to run in order to test the software.  If they all return 
-  0 then the check succeeds, otherwise not. The programs run can be anything but
-  they should either be local to the directory or in your path.</p>
-</div>
-
-<!-- ======================================================================= -->
-<div class="doc_subsection"><a name="check-local">check-local</a></div>
-<div class="doc_text">
-  <p>This target does the same thing as <tt>check</tt> but only for the current
-  (local) directory.</p>
-</div>
-
-<!-- ======================================================================= -->
 <div class="doc_subsection"><a name="clean">clean</a></div>
 <div class="doc_text">
   <p>This target cleans the build directory, recursively removing all things
@@ -895,7 +870,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/11/29 07:47:16 $
+  Last modified: $Date: 2004/12/04 00:04:48 $
 </address>
 
 </body>






More information about the llvm-commits mailing list