From 7dc02825dcd38ea85b9849d6839afeadf2840570 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 3 Dec 2004 21:05:57 +0000 Subject: [PATCH] '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 --- Makefile.rules | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile.rules b/Makefile.rules index b76394ca341..e23d38e8499 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))