'make check' at the top level shouldn't recurse through the sourcedirs
authorChris Lattner <sabre@nondot.org>
Fri, 3 Dec 2004 21:05:57 +0000 (21:05 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 3 Dec 2004 21:05:57 +0000 (21:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18463 91177308-0d34-0410-b5e6-96231b3b80d8

Makefile.rules

index b76394ca34137700f0844cc63f18ceb036039bd9..e23d38e8499ec2407f4337be9aecf9d3d179b37d 100644 (file)
@@ -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))