diff options
Diffstat (limited to 'lib/Target/Alpha/CMakeLists.txt')
-rw-r--r-- | lib/Target/Alpha/CMakeLists.txt | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/lib/Target/Alpha/CMakeLists.txt b/lib/Target/Alpha/CMakeLists.txt index a6027bb..a6d5516 100644 --- a/lib/Target/Alpha/CMakeLists.txt +++ b/lib/Target/Alpha/CMakeLists.txt @@ -1,11 +1,12 @@ set(LLVM_TARGET_DEFINITIONS Alpha.td) -tablegen(AlphaGenRegisterInfo.inc -gen-register-info) -tablegen(AlphaGenInstrInfo.inc -gen-instr-info) -tablegen(AlphaGenAsmWriter.inc -gen-asm-writer) -tablegen(AlphaGenDAGISel.inc -gen-dag-isel) -tablegen(AlphaGenCallingConv.inc -gen-callingconv) -tablegen(AlphaGenSubtargetInfo.inc -gen-subtarget) +llvm_tablegen(AlphaGenRegisterInfo.inc -gen-register-info) +llvm_tablegen(AlphaGenInstrInfo.inc -gen-instr-info) +llvm_tablegen(AlphaGenAsmWriter.inc -gen-asm-writer) +llvm_tablegen(AlphaGenDAGISel.inc -gen-dag-isel) +llvm_tablegen(AlphaGenCallingConv.inc -gen-callingconv) +llvm_tablegen(AlphaGenSubtargetInfo.inc -gen-subtarget) +add_public_tablegen_target(AlphaCommonTableGen) add_llvm_target(AlphaCodeGen AlphaAsmPrinter.cpp @@ -21,5 +22,17 @@ add_llvm_target(AlphaCodeGen AlphaSelectionDAGInfo.cpp ) +add_llvm_library_dependencies(LLVMAlphaCodeGen + LLVMAlphaDesc + LLVMAlphaInfo + LLVMAsmPrinter + LLVMCodeGen + LLVMCore + LLVMMC + LLVMSelectionDAG + LLVMSupport + LLVMTarget + ) + add_subdirectory(TargetInfo) add_subdirectory(MCTargetDesc) |