PTX: Finish new calling convention implementation
[oota-llvm.git] / lib / Target / PTX / CMakeLists.txt
1 set(LLVM_TARGET_DEFINITIONS PTX.td)
2
3 tablegen(PTXGenAsmWriter.inc -gen-asm-writer)
4 tablegen(PTXGenCallingConv.inc -gen-callingconv)
5 tablegen(PTXGenDAGISel.inc -gen-dag-isel)
6 tablegen(PTXGenInstrInfo.inc -gen-instr-desc)
7 tablegen(PTXGenInstrNames.inc -gen-instr-enums)
8 tablegen(PTXGenRegisterInfo.inc -gen-register-desc)
9 tablegen(PTXGenRegisterInfo.h.inc -gen-register-desc-header)
10 tablegen(PTXGenRegisterNames.inc -gen-register-enums)
11 tablegen(PTXGenSubtarget.inc -gen-subtarget)
12
13 add_llvm_target(PTXCodeGen
14   PTXAsmPrinter.cpp
15   PTXISelDAGToDAG.cpp
16   PTXISelLowering.cpp
17   PTXInstrInfo.cpp
18   PTXFrameLowering.cpp
19   PTXMCAsmInfo.cpp
20   PTXMCAsmStreamer.cpp
21   PTXMFInfoExtract.cpp
22   PTXRegisterInfo.cpp
23   PTXSubtarget.cpp
24   PTXTargetMachine.cpp
25   )
26
27 add_subdirectory(TargetInfo)