xref: /NextBSD/lib/clang/liblldbTarget/Makefile (revision 84d351007654069f9643c8e4b4802a7f5f08ee42)
1# $FreeBSD$
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	LanguageRuntime.cpp \
19	Memory.cpp \
20	MemoryHistory.cpp \
21	ObjCLanguageRuntime.cpp \
22	OperatingSystem.cpp \
23	PathMappingList.cpp \
24	Platform.cpp \
25	Process.cpp \
26	ProcessInfo.cpp \
27	ProcessLaunchInfo.cpp \
28	Queue.cpp \
29	QueueItem.cpp \
30	QueueList.cpp \
31	RegisterContext.cpp \
32	SectionLoadHistory.cpp \
33	SectionLoadList.cpp \
34	StackFrame.cpp \
35	StackFrameList.cpp \
36	StackID.cpp \
37	StopInfo.cpp \
38	SystemRuntime.cpp \
39	Target.cpp \
40	TargetList.cpp \
41	Thread.cpp \
42	ThreadCollection.cpp \
43	ThreadList.cpp \
44	ThreadPlan.cpp \
45	ThreadPlanBase.cpp \
46	ThreadPlanCallFunction.cpp \
47	ThreadPlanCallFunctionUsingABI.cpp \
48	ThreadPlanCallUserExpression.cpp \
49	ThreadPlanPython.cpp \
50	ThreadPlanRunToAddress.cpp \
51	ThreadPlanShouldStopHere.cpp \
52	ThreadPlanStepInRange.cpp \
53	ThreadPlanStepInstruction.cpp \
54	ThreadPlanStepOut.cpp \
55	ThreadPlanStepOverBreakpoint.cpp \
56	ThreadPlanStepOverRange.cpp \
57	ThreadPlanStepRange.cpp \
58	ThreadPlanStepThrough.cpp \
59	ThreadPlanStepUntil.cpp \
60	ThreadPlanTracer.cpp \
61	ThreadSpec.cpp \
62	UnixSignals.cpp \
63	UnwindAssembly.cpp
64
65TGHDRS=	AttrList \
66	Attrs \
67	DiagnosticCommonKinds \
68	DeclNodes \
69	StmtNodes \
70	CommentCommandList
71
72.include "../lldb.lib.mk"
73