CMakeLists.txt revision 8e1d64666f493e4994b26a390bec1290a5d94b96
1set(LLVM_TARGET_DEFINITIONS Sparc.td)
2
3tablegen(LLVM SparcGenRegisterInfo.inc -gen-register-info)
4tablegen(LLVM SparcGenInstrInfo.inc -gen-instr-info)
5tablegen(LLVM SparcGenAsmWriter.inc -gen-asm-writer)
6tablegen(LLVM SparcGenDAGISel.inc -gen-dag-isel)
7tablegen(LLVM SparcGenSubtargetInfo.inc -gen-subtarget)
8tablegen(LLVM SparcGenCallingConv.inc -gen-callingconv)
9add_public_tablegen_target(SparcCommonTableGen)
10
11add_llvm_target(SparcCodeGen
12  DelaySlotFiller.cpp
13  SparcAsmPrinter.cpp
14  SparcInstrInfo.cpp
15  SparcISelDAGToDAG.cpp
16  SparcISelLowering.cpp
17  SparcFrameLowering.cpp
18  SparcMachineFunctionInfo.cpp
19  SparcRegisterInfo.cpp
20  SparcSubtarget.cpp
21  SparcTargetMachine.cpp
22  SparcSelectionDAGInfo.cpp
23  )
24
25add_dependencies(LLVMSparcCodeGen SparcCommonTableGen intrinsics_gen)
26
27add_subdirectory(TargetInfo)
28add_subdirectory(MCTargetDesc)
29