1255722Semaste# $FreeBSD$
2255722Semaste
3255722Semaste.include <bsd.own.mk>
4255722Semaste
5255722SemasteLIB=	lldbTarget
6255722Semaste
7255722SemasteCFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/Utility
8255722Semaste
9255722SemasteSRCDIR=	tools/lldb/source/Target
10255722SemasteSRCS=	ABI.cpp \
11255722Semaste	CPPLanguageRuntime.cpp \
12255722Semaste	ExecutionContext.cpp \
13255722Semaste	LanguageRuntime.cpp \
14255722Semaste	Memory.cpp \
15255722Semaste	ObjCLanguageRuntime.cpp \
16255722Semaste	OperatingSystem.cpp \
17255722Semaste	PathMappingList.cpp \
18255722Semaste	Platform.cpp \
19255722Semaste	Process.cpp \
20255722Semaste	RegisterContext.cpp \
21255722Semaste	SectionLoadList.cpp \
22255722Semaste	StackFrame.cpp \
23255722Semaste	StackFrameList.cpp \
24255722Semaste	StackID.cpp \
25255722Semaste	StopInfo.cpp \
26255722Semaste	Target.cpp \
27255722Semaste	TargetList.cpp \
28255722Semaste	Thread.cpp \
29255722Semaste	ThreadList.cpp \
30255722Semaste	ThreadPlan.cpp \
31255722Semaste	ThreadPlanBase.cpp \
32255722Semaste	ThreadPlanCallFunction.cpp \
33255722Semaste	ThreadPlanCallUserExpression.cpp \
34255722Semaste	ThreadPlanRunToAddress.cpp \
35255722Semaste	ThreadPlanShouldStopHere.cpp \
36255722Semaste	ThreadPlanStepInRange.cpp \
37255722Semaste	ThreadPlanStepInstruction.cpp \
38255722Semaste	ThreadPlanStepOut.cpp \
39255722Semaste	ThreadPlanStepOverBreakpoint.cpp \
40255722Semaste	ThreadPlanStepOverRange.cpp \
41255722Semaste	ThreadPlanStepRange.cpp \
42255722Semaste	ThreadPlanStepThrough.cpp \
43255722Semaste	ThreadPlanStepUntil.cpp \
44255722Semaste	ThreadPlanTracer.cpp \
45255722Semaste	ThreadSpec.cpp \
46255722Semaste	UnixSignals.cpp \
47255722Semaste	UnwindAssembly.cpp
48255722Semaste
49255722SemasteTGHDRS=	DiagnosticCommonKinds \
50255722Semaste	DeclNodes \
51255722Semaste	StmtNodes \
52255722Semaste	CommentCommandList
53255722Semaste
54255722Semaste.include "../lldb.lib.mk"
55