5adf5e31615cb63d403b3aff173881f1cf8aef5b
[oota-llvm.git] / lib / Target / SystemZ / CMakeLists.txt
1 set(LLVM_TARGET_DEFINITIONS SystemZ.td)
2
3 tablegen(SystemZGenRegisterInfo.inc -gen-register-info)
4 tablegen(SystemZGenInstrNames.inc -gen-instr-enums)
5 tablegen(SystemZGenInstrInfo.inc -gen-instr-desc)
6 tablegen(SystemZGenAsmWriter.inc -gen-asm-writer)
7 tablegen(SystemZGenDAGISel.inc -gen-dag-isel)
8 tablegen(SystemZGenCallingConv.inc -gen-callingconv)
9 tablegen(SystemZGenSubtarget.inc -gen-subtarget)
10
11 add_llvm_target(SystemZCodeGen
12   SystemZAsmPrinter.cpp
13   SystemZISelDAGToDAG.cpp
14   SystemZISelLowering.cpp
15   SystemZInstrInfo.cpp
16   SystemZFrameLowering.cpp
17   SystemZMCAsmInfo.cpp
18   SystemZRegisterInfo.cpp
19   SystemZSubtarget.cpp
20   SystemZTargetMachine.cpp
21   SystemZSelectionDAGInfo.cpp
22   )
23
24 add_subdirectory(TargetInfo)