blob: d637c4c68d36e1013af55543a454baa897c3d392 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.1 2013/09/29 12:12:02 joerg Exp $
LIB= lldbPluginProcessGDBRemote
.include <bsd.init.mk>
.PATH: ${LLDB_SRCDIR}/source/Plugins/Process/gdb-remote
SRCS+= GDBRemoteCommunication.cpp \
GDBRemoteCommunicationClient.cpp \
GDBRemoteCommunicationServer.cpp \
GDBRemoteRegisterContext.cpp \
ProcessGDBRemote.cpp \
ProcessGDBRemoteLog.cpp \
ThreadGDBRemote.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|