freebsd-skq/lib/clang/liblldbSymbol/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

44 lines
756 B
Makefile

# $FreeBSD$
.include <bsd.own.mk>
LIB= lldbSymbol
SRCDIR= tools/lldb/source/Symbol
SRCS= Block.cpp \
ClangASTContext.cpp \
ClangASTImporter.cpp \
ClangASTType.cpp \
ClangExternalASTSourceCallbacks.cpp \
ClangExternalASTSourceCommon.cpp \
ClangNamespaceDecl.cpp \
CompileUnit.cpp \
Declaration.cpp \
DWARFCallFrameInfo.cpp \
Function.cpp \
FuncUnwinders.cpp \
LineEntry.cpp \
LineTable.cpp \
ObjectFile.cpp \
Symbol.cpp \
SymbolContext.cpp \
SymbolFile.cpp \
SymbolVendor.cpp \
Symtab.cpp \
Type.cpp \
TypeList.cpp \
UnwindPlan.cpp \
UnwindTable.cpp \
Variable.cpp \
VariableList.cpp \
VerifyDecl.cpp
TGHDRS= DiagnosticCommonKinds \
DeclNodes \
StmtNodes \
CommentCommandList \
AttrList \
Attrs
.include "../lldb.lib.mk"