blob: 80f203ac1843003f6155b5b26f13cccae266731a (
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
|
# $FreeBSD$
LIB= clangcodegen
SRCDIR= tools/clang/lib/CodeGen
SRCS= BackendUtil.cpp \
CGBlocks.cpp \
CGBuiltin.cpp \
CGCXX.cpp \
CGCall.cpp \
CGClass.cpp \
CGDebugInfo.cpp \
CGDecl.cpp \
CGDeclCXX.cpp \
CGException.cpp \
CGExpr.cpp \
CGExprAgg.cpp \
CGExprCXX.cpp \
CGExprComplex.cpp \
CGExprConstant.cpp \
CGExprScalar.cpp \
CGObjC.cpp \
CGObjCGNU.cpp \
CGObjCMac.cpp \
CGRTTI.cpp \
CGRecordLayoutBuilder.cpp \
CGStmt.cpp \
CGTemporaries.cpp \
CGVTT.cpp \
CGVTables.cpp \
CodeGenAction.cpp \
CodeGenFunction.cpp \
CodeGenModule.cpp \
CodeGenTypes.cpp \
ItaniumCXXABI.cpp \
Mangle.cpp \
MicrosoftCXXABI.cpp \
ModuleBuilder.cpp \
TargetInfo.cpp
TGHDRS= AttrList \
Attrs \
DeclNodes \
DiagnosticCommonKinds \
DiagnosticFrontendKinds \
Intrinsics \
StmtNodes \
arm_neon
.include "../clang.lib.mk"
|