blob: 65df68f050da0d89f5851eb3ad78559a65d80b21 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# $OpenBSD: Makefile,v 1.8 2019/03/05 09:44:40 jsg Exp $
LIB= LLVMCore
NOPROFILE=
CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/IR
SRCS+= AsmWriter.cpp \
Attributes.cpp \
AutoUpgrade.cpp \
BasicBlock.cpp \
Comdat.cpp \
ConstantFold.cpp \
ConstantRange.cpp \
Constants.cpp \
CoreCore.cpp \
DIBuilder.cpp \
DataLayout.cpp \
DebugInfo.cpp \
DebugInfoMetadata.cpp \
DebugLoc.cpp \
DiagnosticHandler.cpp \
DiagnosticInfo.cpp \
DiagnosticPrinter.cpp \
DomTreeUpdater.cpp \
Dominators.cpp \
Function.cpp \
GVMaterializer.cpp \
Globals.cpp \
IRBuilder.cpp \
IRPrintingPasses.cpp \
InlineAsm.cpp \
Instruction.cpp \
Instructions.cpp \
IntrinsicInst.cpp \
LLVMContext.cpp \
LLVMContextImpl.cpp \
LegacyPassManager.cpp \
MDBuilder.cpp \
Mangler.cpp \
Metadata.cpp \
Module.cpp \
ModuleSummaryIndex.cpp \
Operator.cpp \
OptBisect.cpp \
Pass.cpp \
PassManager.cpp \
PassRegistry.cpp \
ProfileSummary.cpp \
SafepointIRVerifier.cpp \
Statepoint.cpp \
Type.cpp \
TypeFinder.cpp \
Use.cpp \
User.cpp \
Value.cpp \
ValueSymbolTable.cpp \
Verifier.cpp
CoreCore.cpp:
ln -s ${LLVM_SRCS}/lib/IR/Core.cpp $@
.PATH: ${.CURDIR}/../../../llvm/lib/IR
Attributes.o: AttributesCompatFunc.inc
AttributesCompatFunc.inc: AttributesCompatFunc.td
${.OBJDIR}/../llvm-tblgen/llvm-tblgen -gen-attrs \
-I${LLVM_SRCS}/include/llvm/IR -I${LLVM_SRCS}/lib/Target \
-I${LLVM_SRCS}/include \
-o ${.TARGET} ${.ALLSRC}
CLEANFILES+= CoreCore.cpp
|