xref: /minix3/external/bsd/llvm/lib/liblldbTarget/Makefile (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1#	$NetBSD: Makefile,v 1.6 2015/01/29 20:41:38 joerg Exp $
2
3LIB=	lldbTarget
4
5.include <bsd.init.mk>
6
7.PATH: ${LLDB_SRCDIR}/source/Target
8
9CPPFLAGS.Thread.cpp+=	-I${LLDB_SRCDIR}/source/Plugins/Process/Utility
10
11SRCS+=	ABI.cpp \
12	CPPLanguageRuntime.cpp \
13	ExecutionContext.cpp \
14	InstrumentationRuntime.cpp \
15	InstrumentationRuntimeStopInfo.cpp \
16	JITLoader.cpp \
17	JITLoaderList.cpp \
18	LanguageRuntime.cpp \
19	Memory.cpp \
20	NativeRegisterContext.cpp \
21	NativeRegisterContextRegisterInfo.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	ThreadList.cpp \
44	ThreadPlan.cpp \
45	ThreadPlanBase.cpp \
46	ThreadPlanCallFunction.cpp \
47	ThreadPlanCallUserExpression.cpp \
48	ThreadPlanPython.cpp \
49	ThreadPlanRunToAddress.cpp \
50	ThreadPlanShouldStopHere.cpp \
51	ThreadPlanStepInRange.cpp \
52	ThreadPlanStepInstruction.cpp \
53	ThreadPlanStepOut.cpp \
54	ThreadPlanStepOverBreakpoint.cpp \
55	ThreadPlanStepOverRange.cpp \
56	ThreadPlanStepRange.cpp \
57	ThreadPlanStepThrough.cpp \
58	ThreadPlanStepUntil.cpp \
59	ThreadPlanTracer.cpp \
60	ThreadSpec.cpp \
61	UnixSignals.cpp \
62	UnwindAssembly.cpp
63
64.if defined(HOSTLIB)
65.include <bsd.hostlib.mk>
66.else
67.include <bsd.lib.mk>
68.endif
69