diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2010-12-10 02:15:36 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2010-12-10 02:15:36 +0000 |
commit | a8c1c3fe2243dbdd19b24e37a8546b36f7d52d8d (patch) | |
tree | f3fdaadf415d6c5e8608efcfda0715470ef42c35 /llvm/tools | |
parent | 99db9f2f70de8de07814fc4121787e88fb2726b0 (diff) | |
download | bcm5719-llvm-a8c1c3fe2243dbdd19b24e37a8546b36f7d52d8d.tar.gz bcm5719-llvm-a8c1c3fe2243dbdd19b24e37a8546b36f7d52d8d.zip |
Add dependency to "make check".
cmake/modules/AddLLVM.cmake: Add empty "phony" target in add_llvm_loadable_module() even if loadable module were not supported.
llvm-svn: 121455
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/bugpoint-passes/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/tools/bugpoint-passes/CMakeLists.txt b/llvm/tools/bugpoint-passes/CMakeLists.txt index 50109a52c24..b2f1bb5d135 100644 --- a/llvm/tools/bugpoint-passes/CMakeLists.txt +++ b/llvm/tools/bugpoint-passes/CMakeLists.txt @@ -1,3 +1,5 @@ add_llvm_loadable_module( BugpointPasses TestPasses.cpp ) + +add_dependencies(BugpointPasses bugpoint) |