diff options
Diffstat (limited to 'lib/clang/libllvmpowerpccodegen/Makefile')
-rw-r--r-- | lib/clang/libllvmpowerpccodegen/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/lib/clang/libllvmpowerpccodegen/Makefile b/lib/clang/libllvmpowerpccodegen/Makefile new file mode 100644 index 0000000..1874095 --- /dev/null +++ b/lib/clang/libllvmpowerpccodegen/Makefile @@ -0,0 +1,31 @@ +# $FreeBSD$ + +LIB= llvmpowerpccodegen + +SRCDIR= lib/Target/PowerPC +SRCS= PPCAsmPrinter.cpp \ + PPCBranchSelector.cpp \ + PPCCodeEmitter.cpp \ + PPCFrameLowering.cpp \ + PPCHazardRecognizers.cpp \ + PPCISelDAGToDAG.cpp \ + PPCISelLowering.cpp \ + PPCInstrInfo.cpp \ + PPCJITInfo.cpp \ + PPCMCInstLower.cpp \ + PPCMachineFunctionInfo.cpp \ + PPCRegisterInfo.cpp \ + PPCSelectionDAGInfo.cpp \ + PPCSubtarget.cpp \ + PPCTargetMachine.cpp + +TGHDRS= Intrinsics \ + PPCGenCallingConv \ + PPCGenCodeEmitter \ + PPCGenDAGISel \ + PPCGenInstrInfo \ + PPCGenMCCodeEmitter \ + PPCGenRegisterInfo \ + PPCGenSubtargetInfo + +.include "../clang.lib.mk" |