[llvm-commits] CVS: llvm/Makefile.rules
Chris Lattner
lattner at cs.uiuc.edu
Fri Dec 3 13:06:12 PST 2004
Changes in directory llvm:
Makefile.rules updated: 1.247 -> 1.248
---
Log message:
'make check' at the top level shouldn't recurse through the sourcedirs
---
Diffs of the changes: (+1 -2)
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.247 llvm/Makefile.rules:1.248
--- llvm/Makefile.rules:1.247 Fri Dec 3 14:08:48 2004
+++ llvm/Makefile.rules Fri Dec 3 15:05:57 2004
@@ -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 @@
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))
More information about the llvm-commits
mailing list