diff options
Diffstat (limited to 'external/apache2/llvm/lib/libLLVMPowerPCCodeGen/Makefile')
| -rw-r--r-- | external/apache2/llvm/lib/libLLVMPowerPCCodeGen/Makefile | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/external/apache2/llvm/lib/libLLVMPowerPCCodeGen/Makefile b/external/apache2/llvm/lib/libLLVMPowerPCCodeGen/Makefile new file mode 100644 index 00000000000..da273fc1219 --- /dev/null +++ b/external/apache2/llvm/lib/libLLVMPowerPCCodeGen/Makefile @@ -0,0 +1,64 @@ +# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:10 joerg Exp $ + +LIB= LLVMPowerPCCodeGen + +.include <bsd.init.mk> + +.PATH: ${LLVM_SRCDIR}/lib/Target/PowerPC + +SRCS+= PPCAsmPrinter.cpp \ + PPCBoolRetToInt.cpp \ + PPCBranchCoalescing.cpp \ + PPCBranchSelector.cpp \ + PPCCallingConv.cpp \ + PPCCCState.cpp \ + PPCCTRLoops.cpp \ + PPCEarlyReturn.cpp \ + PPCExpandISEL.cpp \ + PPCFastISel.cpp \ + PPCFrameLowering.cpp \ + PPCHazardRecognizers.cpp \ + PPCInstrInfo.cpp \ + PPCISelDAGToDAG.cpp \ + PPCISelLowering.cpp \ + PPCLoopPreIncPrep.cpp \ + PPCMachineFunctionInfo.cpp \ + PPCMachineScheduler.cpp \ + PPCMCInstLower.cpp \ + PPCMIPeephole.cpp \ + PPCPreEmitPeephole.cpp \ + PPCQPXLoadSplat.cpp \ + PPCReduceCRLogicals.cpp \ + PPCRegisterInfo.cpp \ + PPCSubtarget.cpp \ + PPCTargetMachine.cpp \ + PPCTargetObjectFile.cpp \ + PPCTargetTransformInfo.cpp \ + PPCTLSDynamicCall.cpp \ + PPCTOCRegDeps.cpp \ + PPCVSXCopy.cpp \ + PPCVSXFMAMutate.cpp \ + PPCVSXSwapRemoval.cpp + +TABLEGEN_SRC= PPC.td +TABLEGEN_INCLUDES= -I${LLVM_SRCDIR}/lib/Target/PowerPC +TABLEGEN_OUTPUT= \ + PPCGenAsmMatcher.inc|-gen-asm-matcher \ + PPCGenAsmWriter.inc|-gen-asm-writer \ + PPCGenCallingConv.inc|-gen-callingconv \ + PPCGenCodeEmitter.inc|-gen-emitter \ + PPCGenDAGISel.inc|-gen-dag-isel \ + PPCGenDisassemblerTables.inc|-gen-disassembler \ + PPCGenFastISel.inc|-gen-fast-isel \ + PPCGenInstrInfo.inc|-gen-instr-info \ + PPCGenMCCodeEmitter.inc|-gen-emitter \ + PPCGenRegisterInfo.inc|-gen-register-info \ + PPCGenSubtargetInfo.inc|-gen-subtarget + +.include "${.PARSEDIR}/../../tablegen.mk" + +.if defined(HOSTLIB) +.include <bsd.hostlib.mk> +.else +.include <bsd.lib.mk> +.endif |
