1# $NetBSD: Makefile,v 1.2 2013/10/14 01:37:40 joerg Exp $ 2 3LIB= lldbPluginProcessElfCore 4 5.include <bsd.init.mk> 6 7.PATH: ${LLDB_SRCDIR}/source/Plugins/Process/elf-core 8 9CPPFLAGS.RegisterContextPOSIXCore_mips64.cpp+= -I${LLDB_SRCDIR}/source/Plugins/Process/POSIX 10 11SRCS+= ProcessElfCore.cpp \ 12 RegisterContextPOSIXCore_mips64.cpp \ 13 RegisterContextPOSIXCore_x86_64.cpp \ 14 ThreadElfCore.cpp 15 16.if defined(HOSTLIB) 17.include <bsd.hostlib.mk> 18.else 19.include <bsd.lib.mk> 20.endif 21