mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-02 16:56:50 +00:00
00d78f1348
of testing for its presence at cmake time. This way the build automatically regenerates the makefiles when a svn update brings in a new sublibrary. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126068 91177308-0d34-0410-b5e6-96231b3b80d8
29 lines
841 B
CMake
29 lines
841 B
CMake
set(LLVM_TARGET_DEFINITIONS Alpha.td)
|
|
|
|
tablegen(AlphaGenRegisterInfo.h.inc -gen-register-desc-header)
|
|
tablegen(AlphaGenRegisterNames.inc -gen-register-enums)
|
|
tablegen(AlphaGenRegisterInfo.inc -gen-register-desc)
|
|
tablegen(AlphaGenInstrNames.inc -gen-instr-enums)
|
|
tablegen(AlphaGenInstrInfo.inc -gen-instr-desc)
|
|
tablegen(AlphaGenAsmWriter.inc -gen-asm-writer)
|
|
tablegen(AlphaGenDAGISel.inc -gen-dag-isel)
|
|
tablegen(AlphaGenCallingConv.inc -gen-callingconv)
|
|
tablegen(AlphaGenSubtarget.inc -gen-subtarget)
|
|
|
|
add_llvm_target(AlphaCodeGen
|
|
AlphaAsmPrinter.cpp
|
|
AlphaBranchSelector.cpp
|
|
AlphaInstrInfo.cpp
|
|
AlphaISelDAGToDAG.cpp
|
|
AlphaISelLowering.cpp
|
|
AlphaFrameLowering.cpp
|
|
AlphaLLRP.cpp
|
|
AlphaMCAsmInfo.cpp
|
|
AlphaRegisterInfo.cpp
|
|
AlphaSubtarget.cpp
|
|
AlphaTargetMachine.cpp
|
|
AlphaSelectionDAGInfo.cpp
|
|
)
|
|
|
|
add_subdirectory(TargetInfo)
|