1*f4a2713aSLionel Sambuc# $NetBSD: Makefile,v 1.2 2013/11/11 23:51:36 joerg Exp $ 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel SambucLIB= lldbPluginProcessUtility 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc.include <bsd.init.mk> 6*f4a2713aSLionel Sambuc 7*f4a2713aSLionel Sambuc.PATH: ${LLDB_SRCDIR}/source/Plugins/Process/Utility 8*f4a2713aSLionel Sambuc 9*f4a2713aSLionel SambucSRCS+= DynamicRegisterInfo.cpp \ 10*f4a2713aSLionel Sambuc HistoryThread.cpp \ 11*f4a2713aSLionel Sambuc HistoryUnwind.cpp \ 12*f4a2713aSLionel Sambuc InferiorCallPOSIX.cpp \ 13*f4a2713aSLionel Sambuc RegisterContextDarwin_arm.cpp \ 14*f4a2713aSLionel Sambuc RegisterContextDarwin_i386.cpp \ 15*f4a2713aSLionel Sambuc RegisterContextDarwin_x86_64.cpp \ 16*f4a2713aSLionel Sambuc RegisterContextDummy.cpp \ 17*f4a2713aSLionel Sambuc RegisterContextHistory.cpp \ 18*f4a2713aSLionel Sambuc RegisterContextLLDB.cpp \ 19*f4a2713aSLionel Sambuc RegisterContextMach_arm.cpp \ 20*f4a2713aSLionel Sambuc RegisterContextMach_i386.cpp \ 21*f4a2713aSLionel Sambuc RegisterContextMach_x86_64.cpp \ 22*f4a2713aSLionel Sambuc RegisterContextMacOSXFrameBackchain.cpp \ 23*f4a2713aSLionel Sambuc RegisterContextMemory.cpp \ 24*f4a2713aSLionel Sambuc RegisterContextThreadMemory.cpp \ 25*f4a2713aSLionel Sambuc StopInfoMachException.cpp \ 26*f4a2713aSLionel Sambuc ThreadMemory.cpp \ 27*f4a2713aSLionel Sambuc UnwindLLDB.cpp \ 28*f4a2713aSLionel Sambuc UnwindMacOSXFrameBackchain.cpp 29*f4a2713aSLionel Sambuc 30*f4a2713aSLionel Sambuc.if defined(HOSTLIB) 31*f4a2713aSLionel Sambuc.include <bsd.hostlib.mk> 32*f4a2713aSLionel Sambuc.else 33*f4a2713aSLionel Sambuc.include <bsd.lib.mk> 34*f4a2713aSLionel Sambuc.endif 35