blob: c37d45a2664277a463fc5b83dba704ea88153d40 (
plain) (
blame)
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
|
# $FreeBSD$
LIB= llvmcore
SRCDIR= lib/VMCore
SRCS= AsmWriter.cpp \
Attributes.cpp \
AutoUpgrade.cpp \
BasicBlock.cpp \
ConstantFold.cpp \
Constants.cpp \
Core.cpp \
DebugInfoProbe.cpp \
DebugLoc.cpp \
Dominators.cpp \
Function.cpp \
GVMaterializer.cpp \
Globals.cpp \
IRBuilder.cpp \
InlineAsm.cpp \
Instruction.cpp \
Instructions.cpp \
IntrinsicInst.cpp \
LLVMContext.cpp \
LLVMContextImpl.cpp \
LeakDetector.cpp \
Metadata.cpp \
Module.cpp \
Pass.cpp \
PassManager.cpp \
PassRegistry.cpp \
PrintModulePass.cpp \
Type.cpp \
Use.cpp \
User.cpp \
Value.cpp \
ValueSymbolTable.cpp \
ValueTypes.cpp \
Verifier.cpp
LLVM_REQUIRES_RTTI=
TGHDRS= Intrinsics
.include "../clang.lib.mk"
|