diff options
author | Chris Lattner <sabre@nondot.org> | 2004-12-03 23:56:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-12-03 23:56:41 +0000 |
commit | 672d71dcb6b8e165e4cb0d18d44e065e6ea570ea (patch) | |
tree | 3b11cf0d8ece25c94499977fbdee5bf1efc0d3de | |
parent | e539a2baff030faaf020bfb105e9a4309796b8e5 (diff) |
Remove all recursive check support from Makefile.rules
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18470 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile.rules | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile.rules b/Makefile.rules index e23d38e849..a01c591e65 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -20,7 +20,7 @@ # Define the various target sets #-------------------------------------------------------------------- RecursiveTargets := all clean clean-all install uninstall install-bytecode -LocalTargets := all-local clean-local clean-all-local check-local \ +LocalTargets := all-local clean-local clean-all-local \ install-local printvars uninstall-local \ install-bytecode-local TopLevelTargets := dist dist-check dist-clean tags dist-gzip dist-bzip2 \ @@ -131,12 +131,10 @@ endif $(UserTargets):: $(PreConditions) all:: all-local -check:: check-local clean:: clean-local clean-all:: clean-local clean-all-local install:: install-local uninstall:: uninstall-local -check-local:: all-local install-local:: all-local install-bytecode:: install-bytecode-local @@ -1075,7 +1073,7 @@ dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip :: DistCheckTop := else -DistCheckTop := check +DistCheckTop := #------------------------------------------------------------------------ # Prevent catastrophic remove |