blob: af6635d2a856f539c2415276a396dad135b9c896 (
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
|
# $FreeBSD$
.include <bsd.own.mk>
LIB= lldbExpression
SRCDIR= tools/lldb/source/Expression
SRCS= DWARFExpression.cpp \
Expression.cpp \
ExpressionSourceCode.cpp \
ExpressionVariable.cpp \
FunctionCaller.cpp \
IRDynamicChecks.cpp \
IRExecutionUnit.cpp \
IRInterpreter.cpp \
IRMemoryMap.cpp \
LLVMUserExpression.cpp \
Materializer.cpp \
REPL.cpp \
UserExpression.cpp \
UtilityFunction.cpp
TGHDRS= Attributes \
DiagnosticCommonKinds \
DeclNodes \
StmtNodes \
CommentCommandList \
AttrList \
Attrs \
AttrParsedAttrList \
DiagnosticFrontendKinds \
DiagnosticSemaKinds \
Intrinsics
.include "../lldb.lib.mk"
|