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 | 51c06bf6ad16adf0637e7dc910c9943cdb5d000b (patch) | |
tree | 2522a9cae242d74859107d64d5d2eee0cd16a172 /tools/bugpoint-passes | |
parent | 8070812f4c12a5385b7acafa49dd71147632dcfa (diff) |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121455 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint-passes')
-rw-r--r-- | tools/bugpoint-passes/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/bugpoint-passes/CMakeLists.txt b/tools/bugpoint-passes/CMakeLists.txt index 50109a52c2..b2f1bb5d13 100644 --- a/tools/bugpoint-passes/CMakeLists.txt +++ b/tools/bugpoint-passes/CMakeLists.txt @@ -1,3 +1,5 @@ add_llvm_loadable_module( BugpointPasses TestPasses.cpp ) + +add_dependencies(BugpointPasses bugpoint) |