1# $NetBSD: Makefile,v 1.5 2015/01/29 20:41:38 joerg Exp $ 2 3LIB= lldbPluginProcessUtility 4 5.include <bsd.init.mk> 6 7.PATH: ${LLDB_SRCDIR}/source/Plugins/Process/Utility 8 9SRCS+= DynamicRegisterInfo.cpp \ 10 FreeBSDSignals.cpp \ 11 HistoryThread.cpp \ 12 HistoryUnwind.cpp \ 13 InferiorCallPOSIX.cpp \ 14 LinuxSignals.cpp \ 15 RegisterContextDarwin_arm.cpp \ 16 RegisterContextDarwin_arm64.cpp \ 17 RegisterContextDarwin_i386.cpp \ 18 RegisterContextDarwin_x86_64.cpp \ 19 RegisterContextDummy.cpp \ 20 RegisterContextFreeBSD_i386.cpp \ 21 RegisterContextFreeBSD_mips64.cpp \ 22 RegisterContextFreeBSD_powerpc.cpp \ 23 RegisterContextFreeBSD_x86_64.cpp \ 24 RegisterContextLinux_i386.cpp \ 25 RegisterContextLinux_x86_64.cpp \ 26 RegisterContextHistory.cpp \ 27 RegisterContextLLDB.cpp \ 28 RegisterContextMach_arm.cpp \ 29 RegisterContextMach_i386.cpp \ 30 RegisterContextMach_x86_64.cpp \ 31 RegisterContextMacOSXFrameBackchain.cpp \ 32 RegisterContextMemory.cpp \ 33 RegisterContextPOSIX_mips64.cpp \ 34 RegisterContextPOSIX_powerpc.cpp \ 35 RegisterContextPOSIX_x86.cpp \ 36 RegisterContextThreadMemory.cpp \ 37 StopInfoMachException.cpp \ 38 ThreadMemory.cpp \ 39 UnwindLLDB.cpp \ 40 UnwindMacOSXFrameBackchain.cpp 41 42.if defined(HOSTLIB) 43.include <bsd.hostlib.mk> 44.else 45.include <bsd.lib.mk> 46.endif 47