Makefile revision 263363
1258945Sroberto# $FreeBSD: stable/10/lib/clang/liblldbTarget/Makefile 263363 2014-03-19 13:11:35Z emaste $
2258945Sroberto
3258945Sroberto.include <bsd.own.mk>
4258945Sroberto
5258945SrobertoLIB=	lldbTarget
6258945Sroberto
7258945SrobertoCFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/Utility
8258945Sroberto
9258945SrobertoSRCDIR=	tools/lldb/source/Target
10258945SrobertoSRCS=	ABI.cpp \
11258945Sroberto	CPPLanguageRuntime.cpp \
12258945Sroberto	ExecutionContext.cpp \
13258945Sroberto	LanguageRuntime.cpp \
14258945Sroberto	Memory.cpp \
15258945Sroberto	ObjCLanguageRuntime.cpp \
16258945Sroberto	OperatingSystem.cpp \
17258945Sroberto	PathMappingList.cpp \
18258945Sroberto	Platform.cpp \
19258945Sroberto	Process.cpp \
20258945Sroberto	RegisterContext.cpp \
21258945Sroberto	SectionLoadList.cpp \
22258945Sroberto	StackFrame.cpp \
23258945Sroberto	StackFrameList.cpp \
24258945Sroberto	StackID.cpp \
25258945Sroberto	StopInfo.cpp \
26258945Sroberto	SystemRuntime.cpp \
27258945Sroberto	Target.cpp \
28258945Sroberto	TargetList.cpp \
29258945Sroberto	Thread.cpp \
30258945Sroberto	ThreadList.cpp \
31258945Sroberto	ThreadPlan.cpp \
32258945Sroberto	ThreadPlanBase.cpp \
33258945Sroberto	ThreadPlanCallFunction.cpp \
34258945Sroberto	ThreadPlanCallUserExpression.cpp \
35258945Sroberto	ThreadPlanRunToAddress.cpp \
36258945Sroberto	ThreadPlanShouldStopHere.cpp \
37258945Sroberto	ThreadPlanStepInRange.cpp \
38258945Sroberto	ThreadPlanStepInstruction.cpp \
39258945Sroberto	ThreadPlanStepOut.cpp \
40258945Sroberto	ThreadPlanStepOverBreakpoint.cpp \
41258945Sroberto	ThreadPlanStepOverRange.cpp \
42280849Scy	ThreadPlanStepRange.cpp \
43280849Scy	ThreadPlanStepThrough.cpp \
44280849Scy	ThreadPlanStepUntil.cpp \
45280849Scy	ThreadPlanTracer.cpp \
46258945Sroberto	ThreadSpec.cpp \
47258945Sroberto	UnixSignals.cpp \
48258945Sroberto	UnwindAssembly.cpp
49258945Sroberto
50TGHDRS=	DiagnosticCommonKinds \
51	DeclNodes \
52	StmtNodes \
53	CommentCommandList
54
55.include "../lldb.lib.mk"
56