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