1255722Semaste# $FreeBSD: releng/10.3/lib/clang/liblldbCommands/Makefile 269024 2014-07-23 19:35:02Z emaste $
2255722Semaste
3255722Semaste.include <bsd.own.mk>
4255722Semaste
5255722SemasteLIB=	lldbCommands
6255722Semaste
7255722SemasteSRCDIR=	tools/lldb/source/Commands
8255722SemasteSRCS=	CommandCompletions.cpp \
9255722Semaste	CommandObjectApropos.cpp \
10255722Semaste	CommandObjectArgs.cpp \
11255722Semaste	CommandObjectBreakpoint.cpp \
12255722Semaste	CommandObjectBreakpointCommand.cpp \
13255722Semaste	CommandObjectCommands.cpp \
14255722Semaste	CommandObjectDisassemble.cpp \
15255722Semaste	CommandObjectExpression.cpp \
16255722Semaste	CommandObjectFrame.cpp \
17269024Semaste	CommandObjectGUI.cpp \
18255722Semaste	CommandObjectHelp.cpp \
19255722Semaste	CommandObjectLog.cpp \
20255722Semaste	CommandObjectMemory.cpp \
21255722Semaste	CommandObjectMultiword.cpp \
22255722Semaste	CommandObjectPlatform.cpp \
23255722Semaste	CommandObjectPlugin.cpp \
24255722Semaste	CommandObjectProcess.cpp \
25255722Semaste	CommandObjectQuit.cpp \
26255722Semaste	CommandObjectRegister.cpp \
27255722Semaste	CommandObjectSettings.cpp \
28255722Semaste	CommandObjectSource.cpp \
29255722Semaste	CommandObjectSyntax.cpp \
30255722Semaste	CommandObjectTarget.cpp \
31255722Semaste	CommandObjectThread.cpp \
32255722Semaste	CommandObjectType.cpp \
33255722Semaste	CommandObjectVersion.cpp \
34255722Semaste	CommandObjectWatchpoint.cpp \
35255722Semaste	CommandObjectWatchpointCommand.cpp
36255722Semaste
37255722SemasteTGHDRS=	DiagnosticCommonKinds \
38255722Semaste	DeclNodes \
39255722Semaste	StmtNodes \
40255722Semaste	CommentCommandList
41255722Semaste
42255722Semaste.include "../lldb.lib.mk"
43