blob: ec59e3c4ee45c660cb650f3ea09c8da7f5538511 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $FreeBSD$
.include <bsd.own.mk>
LIB= lldbPluginProcessGDBRemote
SRCDIR= tools/lldb/source/Plugins/Process/gdb-remote
SRCS= GDBRemoteCommunication.cpp \
GDBRemoteCommunicationClient.cpp \
GDBRemoteCommunicationServer.cpp \
GDBRemoteCommunicationServerCommon.cpp \
GDBRemoteCommunicationServerLLGS.cpp \
GDBRemoteCommunicationServerPlatform.cpp \
GDBRemoteRegisterContext.cpp \
ProcessGDBRemote.cpp \
ProcessGDBRemoteLog.cpp \
ThreadGDBRemote.cpp
TGHDRS= AttrList \
Attrs \
DiagnosticCommonKinds \
DeclNodes \
StmtNodes \
CommentCommandList
.include "../lldb.lib.mk"
|