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