diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-19 00:26:46 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-19 00:26:46 +0000 |
commit | a34df37c7be72f57166120fdd0e25c2d97fe89db (patch) | |
tree | d462b1f6b20a1410546cf006f9e09cc1ed36be07 /lib | |
parent | 88afc155c23fa1123eb2c42937ddbc5782ca9cc7 (diff) | |
download | external_llvm-a34df37c7be72f57166120fdd0e25c2d97fe89db.zip external_llvm-a34df37c7be72f57166120fdd0e25c2d97fe89db.tar.gz external_llvm-a34df37c7be72f57166120fdd0e25c2d97fe89db.tar.bz2 |
Tweak cmake files for the four targets that don't split CodeGen out.
- We should canonicalize this and get rid of the cmake and llvm-config hacks to
support both variants.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76350 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/MSP430/TargetInfo/CMakeLists.txt | 2 | ||||
-rw-r--r-- | lib/Target/PIC16/TargetInfo/CMakeLists.txt | 2 | ||||
-rw-r--r-- | lib/Target/SystemZ/TargetInfo/CMakeLists.txt | 2 | ||||
-rw-r--r-- | lib/Target/XCore/TargetInfo/CMakeLists.txt | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/MSP430/TargetInfo/CMakeLists.txt b/lib/Target/MSP430/TargetInfo/CMakeLists.txt index 2d1aa9d..1d408d0 100644 --- a/lib/Target/MSP430/TargetInfo/CMakeLists.txt +++ b/lib/Target/MSP430/TargetInfo/CMakeLists.txt @@ -4,4 +4,4 @@ add_llvm_library(LLVMMSP430Info MSP430TargetInfo.cpp ) -add_dependencies(LLVMMSP430Info MSP430CodeGenTable_gen) +add_dependencies(LLVMMSP430Info MSP430Table_gen) diff --git a/lib/Target/PIC16/TargetInfo/CMakeLists.txt b/lib/Target/PIC16/TargetInfo/CMakeLists.txt index f9aa3bf..bfc6ff4 100644 --- a/lib/Target/PIC16/TargetInfo/CMakeLists.txt +++ b/lib/Target/PIC16/TargetInfo/CMakeLists.txt @@ -4,4 +4,4 @@ add_llvm_library(LLVMPIC16Info PIC16TargetInfo.cpp ) -add_dependencies(LLVMPIC16Info PIC16CodeGenTable_gen) +add_dependencies(LLVMPIC16Info PIC16Table_gen) diff --git a/lib/Target/SystemZ/TargetInfo/CMakeLists.txt b/lib/Target/SystemZ/TargetInfo/CMakeLists.txt index 743d8d3..897ec48 100644 --- a/lib/Target/SystemZ/TargetInfo/CMakeLists.txt +++ b/lib/Target/SystemZ/TargetInfo/CMakeLists.txt @@ -4,4 +4,4 @@ add_llvm_library(LLVMSystemZInfo SystemZTargetInfo.cpp ) -add_dependencies(LLVMSystemZInfo SystemZCodeGenTable_gen) +add_dependencies(LLVMSystemZInfo SystemZTable_gen) diff --git a/lib/Target/XCore/TargetInfo/CMakeLists.txt b/lib/Target/XCore/TargetInfo/CMakeLists.txt index c147b8a..0a568de 100644 --- a/lib/Target/XCore/TargetInfo/CMakeLists.txt +++ b/lib/Target/XCore/TargetInfo/CMakeLists.txt @@ -4,4 +4,4 @@ add_llvm_library(LLVMXCoreInfo XCoreTargetInfo.cpp ) -add_dependencies(LLVMXCoreInfo XCoreCodeGenTable_gen) +add_dependencies(LLVMXCoreInfo XCoreTable_gen) |