Makefile revision 276479
1255722Semaste# $FreeBSD: head/lib/clang/liblldbPluginProcessUtility/Makefile 276479 2014-12-31 20:31:32Z dim $
2255722Semaste
3255722Semaste.include <bsd.own.mk>
4255722Semaste
5255722SemasteLIB=	lldbPluginProcessUtility
6255722Semaste
7255722SemasteSRCDIR=	tools/lldb/source/Plugins/Process/Utility
8255722SemasteSRCS=	DynamicRegisterInfo.cpp \
9276479Sdim	FreeBSDSignals.cpp \
10258884Semaste	HistoryThread.cpp \
11258884Semaste	HistoryUnwind.cpp \
12255722Semaste	InferiorCallPOSIX.cpp \
13276479Sdim	LinuxSignals.cpp \
14255722Semaste	RegisterContextDarwin_arm.cpp \
15276479Sdim	RegisterContextDarwin_arm64.cpp \
16255722Semaste	RegisterContextDarwin_i386.cpp \
17255722Semaste	RegisterContextDarwin_x86_64.cpp \
18255722Semaste	RegisterContextDummy.cpp \
19276479Sdim	RegisterContextFreeBSD_i386.cpp \
20276479Sdim	RegisterContextFreeBSD_mips64.cpp \
21276479Sdim	RegisterContextFreeBSD_x86_64.cpp \
22258884Semaste	RegisterContextHistory.cpp \
23276479Sdim	RegisterContextLinux_arm64.cpp \
24276479Sdim	RegisterContextLinux_i386.cpp \
25276479Sdim	RegisterContextLinux_x86_64.cpp \
26255722Semaste	RegisterContextLLDB.cpp \
27255722Semaste	RegisterContextMach_arm.cpp \
28255722Semaste	RegisterContextMach_i386.cpp \
29255722Semaste	RegisterContextMach_x86_64.cpp \
30255722Semaste	RegisterContextMacOSXFrameBackchain.cpp \
31255722Semaste	RegisterContextMemory.cpp \
32276479Sdim	RegisterContextPOSIX_arm64.cpp \
33276479Sdim	RegisterContextPOSIX_mips64.cpp \
34276479Sdim	RegisterContextPOSIX_x86.cpp \
35255722Semaste	RegisterContextThreadMemory.cpp \
36255722Semaste	StopInfoMachException.cpp \
37255722Semaste	ThreadMemory.cpp \
38255722Semaste	UnwindLLDB.cpp \
39255722Semaste	UnwindMacOSXFrameBackchain.cpp
40255722Semaste
41276479SdimTGHDRS=	AttrList \
42276479Sdim	Attrs \
43276479Sdim	DiagnosticCommonKinds \
44255722Semaste	DeclNodes \
45255722Semaste	StmtNodes \
46255722Semaste	CommentCommandList
47255722Semaste
48255722Semaste.include "../lldb.lib.mk"
49