blob: da4f3f48d1981521d8940dcccee380f9f2c6d238 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# $OpenBSD: Makefile,v 1.5 2018/04/06 14:44:04 patrick Exp $
LIB= LLVMPowerPCCodeGen
NOPIC=
NOPROFILE=
CPPFLAGS+= -I${.OBJDIR}/../include/llvm/PowerPC \
-I${LLVM_SRCS}/lib/Target/PowerPC
.include <bsd.own.mk>
SRCS= PPCBoolRetToInt.cpp \
PPCAsmPrinter.cpp \
PPCBranchCoalescing.cpp \
PPCBranchSelector.cpp \
PPCCCState.cpp \
PPCCTRLoops.cpp \
PPCExpandISEL.cpp \
PPCHazardRecognizers.cpp \
PPCInstrInfo.cpp \
PPCISelDAGToDAG.cpp \
PPCISelLowering.cpp \
PPCEarlyReturn.cpp \
PPCFastISel.cpp \
PPCFrameLowering.cpp \
PPCLoopPreIncPrep.cpp \
PPCMCInstLower.cpp \
PPCMachineFunctionInfo.cpp \
PPCMIPeephole.cpp \
PPCPreEmitPeephole.cpp \
PPCQPXLoadSplat.cpp \
PPCReduceCRLogicals.cpp \
PPCRegisterInfo.cpp \
PPCSubtarget.cpp \
PPCTargetMachine.cpp \
PPCTargetObjectFile.cpp \
PPCTargetTransformInfo.cpp \
PPCTOCRegDeps.cpp \
PPCTLSDynamicCall.cpp \
PPCVSXCopy.cpp \
PPCVSXFMAMutate.cpp \
PPCVSXSwapRemoval.cpp
.PATH: ${.CURDIR}/../../../llvm/lib/Target/PowerPC
install:
@# Nothing here so far ...
.include <bsd.lib.mk>
|