freebsd-dev/lib/clang/liblldbCommands/Makefile
Ed Maste e8f1392d95 Add LLDB bmake infrastructure
This connects LLDB to the build, but it is disabled by default.  Add
WITH_LLDB= to src.conf to build it.

Note that LLDB requires a C++11 compiler so is disabled on platforms
using GCC.

Approved by:	re (gjb)
Sponsored by:	DARPA, AFRL
2013-09-20 01:52:02 +00:00

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"