diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-01-04 23:12:21 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-01-04 23:12:21 +0000 |
commit | 2e3646ac175333fd690f6ed7a40ef50f55d65661 (patch) | |
tree | c8ca655a8927f0e711e96b6345b4887e42c69189 /unittests/Makefile | |
parent | 81956101dfbd99c36f00b5350bcc9f50055d95b3 (diff) | |
download | external_llvm-2e3646ac175333fd690f6ed7a40ef50f55d65661.zip external_llvm-2e3646ac175333fd690f6ed7a40ef50f55d65661.tar.gz external_llvm-2e3646ac175333fd690f6ed7a40ef50f55d65661.tar.bz2 |
Modify the unittests Makefiles so that they don't rebuild parts of LLVM just to
run the tests. Most of this was stolen from the llvm/test Makefiles.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61648 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Makefile')
-rw-r--r-- | unittests/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unittests/Makefile b/unittests/Makefile index 33f3c8e..d96df4f 100644 --- a/unittests/Makefile +++ b/unittests/Makefile @@ -8,6 +8,7 @@ ##===----------------------------------------------------------------------===## LEVEL = .. + include $(LEVEL)/Makefile.config LIBRARYNAME = UnitTestMain @@ -20,4 +21,4 @@ PARALLEL_DIRS = ADT include $(LEVEL)/Makefile.common clean:: - $(RM) -f *Tests + $(Verb) $(RM) -f *Tests |