1255722Semaste# $FreeBSD$
2255722Semaste
3255722Semaste.include <bsd.own.mk>
4255722Semaste
5255722SemasteLIB=	lldbSymbol
6255722Semaste
7255722SemasteSRCDIR=	tools/lldb/source/Symbol
8255722SemasteSRCS=	Block.cpp \
9255722Semaste	ClangASTContext.cpp \
10255722Semaste	ClangASTImporter.cpp \
11255722Semaste	ClangASTType.cpp \
12255722Semaste	ClangExternalASTSourceCallbacks.cpp \
13255722Semaste	ClangExternalASTSourceCommon.cpp \
14255722Semaste	ClangNamespaceDecl.cpp \
15255722Semaste	CompileUnit.cpp \
16255722Semaste	Declaration.cpp \
17255722Semaste	DWARFCallFrameInfo.cpp \
18255722Semaste	Function.cpp \
19255722Semaste	FuncUnwinders.cpp \
20255722Semaste	LineEntry.cpp \
21255722Semaste	LineTable.cpp \
22255722Semaste	ObjectFile.cpp \
23255722Semaste	Symbol.cpp \
24255722Semaste	SymbolContext.cpp \
25255722Semaste	SymbolFile.cpp \
26255722Semaste	SymbolVendor.cpp \
27255722Semaste	Symtab.cpp \
28255722Semaste	Type.cpp \
29255722Semaste	TypeList.cpp \
30255722Semaste	UnwindPlan.cpp \
31255722Semaste	UnwindTable.cpp \
32255722Semaste	Variable.cpp \
33255722Semaste	VariableList.cpp \
34255722Semaste	VerifyDecl.cpp
35255722Semaste
36255722SemasteTGHDRS=	DiagnosticCommonKinds \
37255722Semaste	DeclNodes \
38255722Semaste	StmtNodes \
39255722Semaste	CommentCommandList \
40255722Semaste	AttrList \
41255722Semaste	Attrs
42255722Semaste
43255722Semaste.include "../lldb.lib.mk"
44