blob: 60e0bb1856c32c3d55081b0c463139c963c9aa73 [file] [log] [blame]
Anton Korobeynikov128e8a12009-05-03 12:58:22 +00001set(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
Anton Korobeynikov384b3362009-08-14 18:46:49 +000013add_llvm_target(MSP430CodeGen
Richard Pennington9f3bd4a2009-07-09 20:27:09 +000014 MSP430InstrInfo.cpp
Benjamin Kramer3c62f502009-08-31 13:05:24 +000015 MSP430ISelDAGToDAG.cpp
Richard Pennington9f3bd4a2009-07-09 20:27:09 +000016 MSP430ISelLowering.cpp
Benjamin Kramer3c62f502009-08-31 13:05:24 +000017 MSP430MCAsmInfo.cpp
18 MSP430RegisterInfo.cpp
Richard Pennington9f3bd4a2009-07-09 20:27:09 +000019 MSP430Subtarget.cpp
Anton Korobeynikov128e8a12009-05-03 12:58:22 +000020 MSP430TargetMachine.cpp
21 )
Richard Pennington9f3bd4a2009-07-09 20:27:09 +000022
Anton Korobeynikov384b3362009-08-14 18:46:49 +000023target_link_libraries (LLVMMSP430CodeGen LLVMSelectionDAG)