reduce chattyness of makefiles

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48597 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Makefile b/Makefile
index b1279a6..e5333ee 100644
--- a/Makefile
+++ b/Makefile
@@ -4,11 +4,13 @@
 include $(LEVEL)/Makefile.common
 
 test::
-	cd test && $(MAKE) -f Makefile.parallel
+	@ cd test && $(MAKE) -f Makefile.parallel
 
 report::
-	cd test && $(MAKE) -f Makefile.parallel report
+	@ cd test && $(MAKE) -f Makefile.parallel report
 
 clean::
-	@rm -rf build
-	@rm -rf `find test -name Output`
+	@ rm -rf build
+	@ cd test && $(MAKE) -f Makefile.parallel clean
+
+.PHONY: test report clean
diff --git a/test/Makefile b/test/Makefile
index f162978..8c8fe51 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -14,6 +14,6 @@
 	      -print -exec ./TestRunner.sh {} \;
 
 clean::
-	rm -rf Output/
+	@ rm -rf Output/
 
 .PHONY: all clean
diff --git a/test/Makefile.parallel b/test/Makefile.parallel
index 2a8c857..2e47039 100644
--- a/test/Makefile.parallel
+++ b/test/Makefile.parallel
@@ -35,6 +35,6 @@
 	@ cat $^
 
 clean::
-	rm -rf Output/
+	@ rm -rf Output/
 
 .PHONY: all report clean