Makefile revision 280031
1# $FreeBSD: head/lib/clang/liblldbTarget/Makefile 280031 2015-03-15 13:31:13Z 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	LanguageRuntime.cpp \
19	Memory.cpp \
20	MemoryHistory.cpp \
21	NativeRegisterContext.cpp \
22	NativeRegisterContextRegisterInfo.cpp \
23	ObjCLanguageRuntime.cpp \
24	OperatingSystem.cpp \
25	PathMappingList.cpp \
26	Platform.cpp \
27	Process.cpp \
28	ProcessInfo.cpp \
29	ProcessLaunchInfo.cpp \
30	Queue.cpp \
31	QueueItem.cpp \
32	QueueList.cpp \
33	RegisterContext.cpp \
34	SectionLoadHistory.cpp \
35	SectionLoadList.cpp \
36	StackFrame.cpp \
37	StackFrameList.cpp \
38	StackID.cpp \
39	StopInfo.cpp \
40	SystemRuntime.cpp \
41	Target.cpp \
42	TargetList.cpp \
43	Thread.cpp \
44	ThreadCollection.cpp \
45	ThreadList.cpp \
46	ThreadPlan.cpp \
47	ThreadPlanBase.cpp \
48	ThreadPlanCallFunction.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