CMakeLists.txt revision b78e17b33a9d5c6bcce3119fe2fcae84f1761392
1set(LLVM_TARGET_DEFINITIONS MSP430.td)
2
3tablegen(MSP430GenRegisterInfo.h.inc -gen-register-desc-header)
4tablegen(MSP430GenRegisterNames.inc -gen-register-enums)
5tablegen(MSP430GenRegisterInfo.inc -gen-register-desc)
6tablegen(MSP430GenInstrNames.inc -gen-instr-enums)
7tablegen(MSP430GenInstrInfo.inc -gen-instr-desc)
8tablegen(MSP430GenAsmWriter.inc -gen-asm-writer)
9tablegen(MSP430GenDAGISel.inc -gen-dag-isel)
10tablegen(MSP430GenCallingConv.inc -gen-callingconv)
11tablegen(MSP430GenSubtarget.inc -gen-subtarget)
12
13add_llvm_target(MSP430
14  MSP430AsmPrinter.cpp
15  MSP430FrameInfo.cpp
16  MSP430InstrInfo.cpp
17  MSP430ISelDAGToDAG.cpp
18  MSP430ISelLowering.cpp
19  MSP430RegisterInfo.cpp
20  MSP430Subtarget.cpp
21  MSP430TargetAsmInfo.cpp
22  MSP430TargetMachine.cpp
23  )
24