42 lines
968 B
Makefile
42 lines
968 B
Makefile
|
# $FreeBSD$
|
||
|
|
||
|
.include <bsd.own.mk>
|
||
|
|
||
|
LIB= lldbCommands
|
||
|
|
||
|
SRCDIR= tools/lldb/source/Commands
|
||
|
SRCS= CommandCompletions.cpp \
|
||
|
CommandObjectApropos.cpp \
|
||
|
CommandObjectArgs.cpp \
|
||
|
CommandObjectBreakpoint.cpp \
|
||
|
CommandObjectBreakpointCommand.cpp \
|
||
|
CommandObjectCommands.cpp \
|
||
|
CommandObjectDisassemble.cpp \
|
||
|
CommandObjectExpression.cpp \
|
||
|
CommandObjectFrame.cpp \
|
||
|
CommandObjectHelp.cpp \
|
||
|
CommandObjectLog.cpp \
|
||
|
CommandObjectMemory.cpp \
|
||
|
CommandObjectMultiword.cpp \
|
||
|
CommandObjectPlatform.cpp \
|
||
|
CommandObjectPlugin.cpp \
|
||
|
CommandObjectProcess.cpp \
|
||
|
CommandObjectQuit.cpp \
|
||
|
CommandObjectRegister.cpp \
|
||
|
CommandObjectSettings.cpp \
|
||
|
CommandObjectSource.cpp \
|
||
|
CommandObjectSyntax.cpp \
|
||
|
CommandObjectTarget.cpp \
|
||
|
CommandObjectThread.cpp \
|
||
|
CommandObjectType.cpp \
|
||
|
CommandObjectVersion.cpp \
|
||
|
CommandObjectWatchpoint.cpp \
|
||
|
CommandObjectWatchpointCommand.cpp
|
||
|
|
||
|
TGHDRS= DiagnosticCommonKinds \
|
||
|
DeclNodes \
|
||
|
StmtNodes \
|
||
|
CommentCommandList
|
||
|
|
||
|
.include "../lldb.lib.mk"
|