1set(LLVM_TARGET_DEFINITIONS AVR.td) 2 3tablegen(LLVM AVRGenRegisterInfo.inc -gen-register-info) 4tablegen(LLVM AVRGenInstrInfo.inc -gen-instr-info) 5tablegen(LLVM AVRGenCallingConv.inc -gen-callingconv) 6tablegen(LLVM AVRGenSubtargetInfo.inc -gen-subtarget) 7add_public_tablegen_target(AVRCommonTableGen) 8 9add_llvm_target(AVRCodeGen 10 AVRInstrInfo.cpp 11 AVRRegisterInfo.cpp 12 AVRSubtarget.cpp 13 AVRTargetMachine.cpp 14 AVRTargetObjectFile.cpp 15) 16 17add_dependencies(LLVMAVRCodeGen intrinsics_gen) 18 19add_subdirectory(MCTargetDesc) 20add_subdirectory(TargetInfo) 21 22