xref: /minix3/external/bsd/llvm/lib/liblldbPluginProcessGDBRemote/Makefile (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc#	$NetBSD: Makefile,v 1.1 2013/09/29 12:12:02 joerg Exp $
2*f4a2713aSLionel Sambuc
3*f4a2713aSLionel SambucLIB=	lldbPluginProcessGDBRemote
4*f4a2713aSLionel Sambuc
5*f4a2713aSLionel Sambuc.include <bsd.init.mk>
6*f4a2713aSLionel Sambuc
7*f4a2713aSLionel Sambuc.PATH: ${LLDB_SRCDIR}/source/Plugins/Process/gdb-remote
8*f4a2713aSLionel Sambuc
9*f4a2713aSLionel SambucSRCS+=	GDBRemoteCommunication.cpp \
10*f4a2713aSLionel Sambuc	GDBRemoteCommunicationClient.cpp \
11*f4a2713aSLionel Sambuc	GDBRemoteCommunicationServer.cpp \
12*f4a2713aSLionel Sambuc	GDBRemoteRegisterContext.cpp \
13*f4a2713aSLionel Sambuc	ProcessGDBRemote.cpp \
14*f4a2713aSLionel Sambuc	ProcessGDBRemoteLog.cpp \
15*f4a2713aSLionel Sambuc	ThreadGDBRemote.cpp
16*f4a2713aSLionel Sambuc
17*f4a2713aSLionel Sambuc.if defined(HOSTLIB)
18*f4a2713aSLionel Sambuc.include <bsd.hostlib.mk>
19*f4a2713aSLionel Sambuc.else
20*f4a2713aSLionel Sambuc.include <bsd.lib.mk>
21*f4a2713aSLionel Sambuc.endif
22