OSDN Git Service

[CMake] NFC. Updating CMake dependency specifications
[android-x86/external-llvm.git] / lib / Target / AVR / CMakeLists.txt
1 set(LLVM_TARGET_DEFINITIONS AVR.td)
2
3 tablegen(LLVM AVRGenAsmMatcher.inc -gen-asm-matcher)
4 tablegen(LLVM AVRGenRegisterInfo.inc -gen-register-info)
5 tablegen(LLVM AVRGenInstrInfo.inc -gen-instr-info)
6 tablegen(LLVM AVRGenDisassemblerTables.inc -gen-disassembler)
7 tablegen(LLVM AVRGenMCCodeEmitter.inc -gen-emitter)
8 tablegen(LLVM AVRGenAsmWriter.inc -gen-asm-writer)
9 tablegen(LLVM AVRGenAsmMatcher.inc -gen-asm-matcher)
10 tablegen(LLVM AVRGenDAGISel.inc -gen-dag-isel)
11 tablegen(LLVM AVRGenCallingConv.inc -gen-callingconv)
12 tablegen(LLVM AVRGenDAGISel.inc -gen-dag-isel)
13 tablegen(LLVM AVRGenDisassemblerTables.inc -gen-disassembler)
14 tablegen(LLVM AVRGenInstrInfo.inc -gen-instr-info)
15 tablegen(LLVM AVRGenRegisterInfo.inc -gen-register-info)
16 tablegen(LLVM AVRGenSubtargetInfo.inc -gen-subtarget)
17 add_public_tablegen_target(AVRCommonTableGen)
18
19 add_llvm_target(AVRCodeGen
20   AVRAsmPrinter.cpp
21   AVRExpandPseudoInsts.cpp
22   AVRFrameLowering.cpp
23   AVRInstrInfo.cpp
24   AVRISelDAGToDAG.cpp
25   AVRISelLowering.cpp
26   AVRMCInstLower.cpp
27   AVRRegisterInfo.cpp
28   AVRSubtarget.cpp
29   AVRTargetMachine.cpp
30   AVRTargetObjectFile.cpp
31
32   DEPENDS
33   intrinsics_gen
34 )
35
36 add_subdirectory(AsmParser)
37 add_subdirectory(Disassembler)
38 add_subdirectory(InstPrinter)
39 add_subdirectory(MCTargetDesc)
40 add_subdirectory(TargetInfo)