summaryrefslogtreecommitdiff
path: root/Makefile.rules
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-12-03 21:05:57 +0000
committerChris Lattner <sabre@nondot.org>2004-12-03 21:05:57 +0000
commit7dc02825dcd38ea85b9849d6839afeadf2840570 (patch)
treeabb477e039189054a4b55ed26b1b6690d98dc048 /Makefile.rules
parent44cb1b3e074edff7a063379feca293c117a93274 (diff)
downloadllvm-7dc02825dcd38ea85b9849d6839afeadf2840570.tar.gz
llvm-7dc02825dcd38ea85b9849d6839afeadf2840570.tar.bz2
llvm-7dc02825dcd38ea85b9849d6839afeadf2840570.tar.xz
'make check' at the top level shouldn't recurse through the sourcedirs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18463 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules
index b76394ca34..e23d38e849 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -19,7 +19,7 @@
#--------------------------------------------------------------------
# Define the various target sets
#--------------------------------------------------------------------
-RecursiveTargets := all clean clean-all check install uninstall install-bytecode
+RecursiveTargets := all clean clean-all install uninstall install-bytecode
LocalTargets := all-local clean-local clean-all-local check-local \
install-local printvars uninstall-local \
install-bytecode-local
@@ -394,7 +394,6 @@ SubDirs += $(PARALLEL_DIRS)
all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
-check :: $(addsuffix /.makecheck ,$(PARALLEL_DIRS))
install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))