Internalize variable names to prevent recursive assignment. Cleanup docs.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17359 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Makefile b/Makefile
index c11e794..d1459a9 100644
--- a/Makefile
+++ b/Makefile
@@ -20,10 +20,10 @@
 include $(LEVEL)/Makefile.common
 
 dist-hook::
-	@$(ECHO) Eliminating CVS directories from distribution
-	$(VERB) rm -rf `find $(TopDistDir) -type d -name CVS -print`
-	@$(ECHO) Eliminating files constructed by configure
-	$(VERB) rm -f \
+	$(Echo) Eliminating CVS directories from distribution
+	$(Verb) $(RM) -rf `find $(TopDistDir) -type d -name CVS -print`
+	$(Echo) Eliminating files constructed by configure
+	$(Verb) $(RM) -f \
 	  $(TopDistDir)/include/llvm/ADT/hash_map  \
 	  $(TopDistDir)/include/llvm/ADT/hash_set  \
 	  $(TopDistDir)/include/llvm/ADT/iterator  \
@@ -31,7 +31,7 @@
 	  $(TopDistDir)/include/llvm/Support/DataTypes.h  \
 	  $(TopDistDir)/include/llvm/Support/ThreadSupport.h
 
-test :: all
-	cd test; $(MAKE)
+check :: 
+	cd test; $(MAKE) 
 
 tools-only: all