1# $FreeBSD: releng/11.0/lib/clang/liblldbTarget/Makefile 296417 2016-03-05 20:24:31Z dim $
2
3.include <bsd.own.mk>
4
5LIB=	lldbTarget
6
7CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/Utility
8
9SRCDIR=	tools/lldb/source/Target
10SRCS=	ABI.cpp \
11	CPPLanguageRuntime.cpp \
12	ExecutionContext.cpp \
13	FileAction.cpp \
14	InstrumentationRuntime.cpp \
15	InstrumentationRuntimeStopInfo.cpp \
16	JITLoader.cpp \
17	JITLoaderList.cpp \
18	Language.cpp \
19	LanguageRuntime.cpp \
20	Memory.cpp \
21	MemoryHistory.cpp \
22	ObjCLanguageRuntime.cpp \
23	OperatingSystem.cpp \
24	PathMappingList.cpp \
25	Platform.cpp \
26	Process.cpp \
27	ProcessInfo.cpp \
28	ProcessLaunchInfo.cpp \
29	Queue.cpp \
30	QueueItem.cpp \
31	QueueList.cpp \
32	RegisterContext.cpp \
33	SectionLoadHistory.cpp \
34	SectionLoadList.cpp \
35	StackFrame.cpp \
36	StackFrameList.cpp \
37	StackID.cpp \
38	StopInfo.cpp \
39	SystemRuntime.cpp \
40	Target.cpp \
41	TargetList.cpp \
42	Thread.cpp \
43	ThreadCollection.cpp \
44	ThreadList.cpp \
45	ThreadPlan.cpp \
46	ThreadPlanBase.cpp \
47	ThreadPlanCallFunction.cpp \
48	ThreadPlanCallFunctionUsingABI.cpp \
49	ThreadPlanCallUserExpression.cpp \
50	ThreadPlanPython.cpp \
51	ThreadPlanRunToAddress.cpp \
52	ThreadPlanShouldStopHere.cpp \
53	ThreadPlanStepInRange.cpp \
54	ThreadPlanStepInstruction.cpp \
55	ThreadPlanStepOut.cpp \
56	ThreadPlanStepOverBreakpoint.cpp \
57	ThreadPlanStepOverRange.cpp \
58	ThreadPlanStepRange.cpp \
59	ThreadPlanStepThrough.cpp \
60	ThreadPlanStepUntil.cpp \
61	ThreadPlanTracer.cpp \
62	ThreadSpec.cpp \
63	UnixSignals.cpp \
64	UnwindAssembly.cpp
65
66TGHDRS=	AttrList \
67	Attrs \
68	DiagnosticCommonKinds \
69	DeclNodes \
70	StmtNodes \
71	CommentCommandList
72
73.include "../lldb.lib.mk"
74