From ff52f9c91db7d0a4874a9569ebc88f3e70940a25 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 4 Dec 2004 00:04:48 +0000 Subject: [PATCH] Update for changes to check targets. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18473 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/MakefileGuide.html | 33 ++++----------------------------- 1 file changed, 4 insertions(+), 29 deletions(-) diff --git a/docs/MakefileGuide.html b/docs/MakefileGuide.html index d71ed44952b..25f9d17f262 100644 --- a/docs/MakefileGuide.html +++ b/docs/MakefileGuide.html @@ -41,7 +41,6 @@
  • all
  • all-local
  • check
  • -
  • check-local
  • clean
  • clean-local
  • dist
  • @@ -313,8 +312,8 @@

    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).

    + applicable to a given directory (e.g. "check", "dist", and "install" will + always operate as if invoked from the top level directory).

    @@ -324,11 +323,8 @@ - - - - +
    Target NameImplied TargetsTarget Description
    all-local Compile the software in the local directory only.
    checkallTest the software recursively. -
    check-localall-localTest the software in the local directory only. +
    checkChange to the llvm/test directory and run regression tests.
    clean Remove built objects recursively. @@ -381,27 +377,6 @@ the current directory instead of recursively.

    - - -
    -

    This target is used to perform any functional, unit or sanity tests as the - software is being built. The check target depends on the - all target so the software is built in each - directory first and then the "check" is applied.

    -

    The definition of "check" is pretty general. It depends on the value of the - TESTS 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.

    -
    - - - -
    -

    This target does the same thing as check but only for the current - (local) directory.

    -
    -