aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/Alpha/CMakeLists.txt
diff options
context:
space:
mode:
authorOscar Fuentes <ofv@wanadoo.es>2008-09-26 04:40:32 +0000
committerOscar Fuentes <ofv@wanadoo.es>2008-09-26 04:40:32 +0000
commitda2a8a1309f7303008175e1d1ac7d4276c4454ec (patch)
tree2b2810f778bb1811569c18332a0ae6daabb91e9a /lib/Target/Alpha/CMakeLists.txt
parent17a4714dfde758d3a4e426f515ee95e239cbd7e6 (diff)
downloadexternal_llvm-da2a8a1309f7303008175e1d1ac7d4276c4454ec.zip
external_llvm-da2a8a1309f7303008175e1d1ac7d4276c4454ec.tar.gz
external_llvm-da2a8a1309f7303008175e1d1ac7d4276c4454ec.tar.bz2
CMake: Builds all targets.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56641 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/CMakeLists.txt')
-rw-r--r--lib/Target/Alpha/CMakeLists.txt26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/Target/Alpha/CMakeLists.txt b/lib/Target/Alpha/CMakeLists.txt
new file mode 100644
index 0000000..8a845ae
--- /dev/null
+++ b/lib/Target/Alpha/CMakeLists.txt
@@ -0,0 +1,26 @@
+set(LLVM_TARGET_DEFINITIONS Alpha.td)
+
+tablegen(AlphaGenRegisterInfo.h.inc -gen-register-desc-header)
+tablegen(AlphaGenRegisterNames.inc -gen-register-enums)
+tablegen(AlphaGenRegisterInfo.inc -gen-register-desc)
+tablegen(AlphaGenInstrNames.inc -gen-instr-enums)
+tablegen(AlphaGenInstrInfo.inc -gen-instr-desc)
+tablegen(AlphaGenCodeEmitter.inc -gen-emitter)
+tablegen(AlphaGenAsmWriter.inc -gen-asm-writer)
+tablegen(AlphaGenDAGISel.inc -gen-dag-isel)
+tablegen(AlphaGenSubtarget.inc -gen-subtarget)
+
+add_llvm_target(Alpha
+ AlphaAsmPrinter.cpp
+ AlphaBranchSelector.cpp
+ AlphaCodeEmitter.cpp
+ AlphaInstrInfo.cpp
+ AlphaISelDAGToDAG.cpp
+ AlphaISelLowering.cpp
+ AlphaJITInfo.cpp
+ AlphaLLRP.cpp
+ AlphaRegisterInfo.cpp
+ AlphaSubtarget.cpp
+ AlphaTargetAsmInfo.cpp
+ AlphaTargetMachine.cpp
+ )