0a0889c380
Sponsored by: DARPA, AFRL
71 lines
1.3 KiB
Makefile
71 lines
1.3 KiB
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= lldbAPI
|
|
|
|
SRCDIR= tools/lldb/source/API
|
|
SRCS= SBAddress.cpp \
|
|
SBBlock.cpp \
|
|
SBBreakpoint.cpp \
|
|
SBBreakpointLocation.cpp \
|
|
SBBroadcaster.cpp \
|
|
SBCommandInterpreter.cpp \
|
|
SBCommandReturnObject.cpp \
|
|
SBCommunication.cpp \
|
|
SBCompileUnit.cpp \
|
|
SBData.cpp \
|
|
SBDebugger.cpp \
|
|
SBDeclaration.cpp \
|
|
SBError.cpp \
|
|
SBEvent.cpp \
|
|
SBExecutionContext.cpp \
|
|
SBExpressionOptions.cpp \
|
|
SBFileSpec.cpp \
|
|
SBFileSpecList.cpp \
|
|
SBFrame.cpp \
|
|
SBFunction.cpp \
|
|
SBHostOS.cpp \
|
|
SBInstruction.cpp \
|
|
SBInstructionList.cpp \
|
|
SBLineEntry.cpp \
|
|
SBListener.cpp \
|
|
SBModule.cpp \
|
|
SBModuleSpec.cpp \
|
|
SBPlatform.cpp \
|
|
SBProcess.cpp \
|
|
SBQueue.cpp \
|
|
SBQueueItem.cpp \
|
|
SBSection.cpp \
|
|
SBSourceManager.cpp \
|
|
SBStream.cpp \
|
|
SBStringList.cpp \
|
|
SBSymbol.cpp \
|
|
SBSymbolContext.cpp \
|
|
SBSymbolContextList.cpp \
|
|
SBTarget.cpp \
|
|
SBThreadCollection.cpp \
|
|
SBThreadPlan.cpp \
|
|
SBThread.cpp \
|
|
SBType.cpp \
|
|
SBTypeCategory.cpp \
|
|
SBTypeEnumMember.cpp \
|
|
SBTypeFilter.cpp \
|
|
SBTypeFormat.cpp \
|
|
SBTypeNameSpecifier.cpp \
|
|
SBTypeSummary.cpp \
|
|
SBTypeSynthetic.cpp \
|
|
SBUnixSignals.cpp \
|
|
SBValue.cpp \
|
|
SBValueList.cpp \
|
|
SBWatchpoint.cpp
|
|
|
|
TGHDRS= AttrList \
|
|
Attrs \
|
|
DiagnosticCommonKinds \
|
|
DeclNodes \
|
|
StmtNodes \
|
|
CommentCommandList
|
|
|
|
.include "../lldb.lib.mk"
|