1255722Semaste# $FreeBSD$
2255722Semaste
3255722Semaste.include <bsd.own.mk>
4255722Semaste
5255722SemasteLIB=	lldbAPI
6255722Semaste
7255722SemasteSRCDIR=	tools/lldb/source/API
8255722SemasteSRCS=	SBAddress.cpp \
9255722Semaste	SBBlock.cpp \
10255722Semaste	SBBreakpoint.cpp \
11255722Semaste	SBBreakpointLocation.cpp \
12255722Semaste	SBBroadcaster.cpp \
13255722Semaste	SBCommandInterpreter.cpp \
14255722Semaste	SBCommandReturnObject.cpp \
15255722Semaste	SBCommunication.cpp \
16255722Semaste	SBCompileUnit.cpp \
17255722Semaste	SBData.cpp \
18255722Semaste	SBDebugger.cpp \
19255722Semaste	SBDeclaration.cpp \
20255722Semaste	SBError.cpp \
21255722Semaste	SBEvent.cpp \
22255722Semaste	SBExpressionOptions.cpp \
23255722Semaste	SBFileSpec.cpp \
24255722Semaste	SBFileSpecList.cpp \
25255722Semaste	SBFrame.cpp \
26255722Semaste	SBFunction.cpp \
27255722Semaste	SBHostOS.cpp \
28255722Semaste	SBInputReader.cpp \
29255722Semaste	SBInstruction.cpp \
30255722Semaste	SBInstructionList.cpp \
31255722Semaste	SBLineEntry.cpp \
32255722Semaste	SBListener.cpp \
33255722Semaste	SBModule.cpp \
34255722Semaste	SBModuleSpec.cpp \
35255722Semaste	SBProcess.cpp \
36255722Semaste	SBSection.cpp \
37255722Semaste	SBSourceManager.cpp \
38255722Semaste	SBStream.cpp \
39255722Semaste	SBStringList.cpp \
40255722Semaste	SBSymbol.cpp \
41255722Semaste	SBSymbolContext.cpp \
42255722Semaste	SBSymbolContextList.cpp \
43255722Semaste	SBTarget.cpp \
44255722Semaste	SBThread.cpp \
45255722Semaste	SBType.cpp \
46255722Semaste	SBTypeCategory.cpp \
47255722Semaste	SBTypeFilter.cpp \
48255722Semaste	SBTypeFormat.cpp \
49255722Semaste	SBTypeNameSpecifier.cpp \
50255722Semaste	SBTypeSummary.cpp \
51255722Semaste	SBTypeSynthetic.cpp \
52255722Semaste	SBValue.cpp \
53255722Semaste	SBValueList.cpp \
54255722Semaste	SBWatchpoint.cpp
55255722Semaste
56255722SemasteTGHDRS=	DiagnosticCommonKinds \
57255722Semaste	DeclNodes \
58255722Semaste	StmtNodes \
59255722Semaste	CommentCommandList
60255722Semaste
61255722Semaste.include "../lldb.lib.mk"
62