summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-10-30 09:19:36 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-10-30 09:19:36 +0000
commitcc2d1e25f37d0d00c7f7f3ec562be61bc34e54ca (patch)
tree0ce5dd37251c7723bad243a23d047058cb65afaa /Makefile
parentf1bd4b4215a838c5ff0f3c68600d012d2cdebfa7 (diff)
downloadllvm-cc2d1e25f37d0d00c7f7f3ec562be61bc34e54ca.tar.gz
llvm-cc2d1e25f37d0d00c7f7f3ec562be61bc34e54ca.tar.bz2
llvm-cc2d1e25f37d0d00c7f7f3ec562be61bc34e54ca.tar.xz
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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index c11e7946cd..d1459a97a3 100644
--- a/Makefile
+++ b/Makefile
@@ -20,10 +20,10 @@ EXTRA_DIST := test llvm.spec include
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 @@ dist-hook::
$(TopDistDir)/include/llvm/Support/DataTypes.h \
$(TopDistDir)/include/llvm/Support/ThreadSupport.h
-test :: all
- cd test; $(MAKE)
+check ::
+ cd test; $(MAKE)
tools-only: all