1*f4a2713aSLionel Sambuc# $NetBSD: Makefile,v 1.1 2013/09/29 12:12:00 joerg Exp $ 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel SambucLIB= lldbBreakpoint 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc.include <bsd.init.mk> 6*f4a2713aSLionel Sambuc 7*f4a2713aSLionel Sambuc.PATH: ${LLDB_SRCDIR}/source/Breakpoint 8*f4a2713aSLionel Sambuc 9*f4a2713aSLionel SambucSRCS+= Breakpoint.cpp \ 10*f4a2713aSLionel Sambuc BreakpointID.cpp \ 11*f4a2713aSLionel Sambuc BreakpointIDList.cpp \ 12*f4a2713aSLionel Sambuc BreakpointList.cpp \ 13*f4a2713aSLionel Sambuc BreakpointLocation.cpp \ 14*f4a2713aSLionel Sambuc BreakpointLocationCollection.cpp \ 15*f4a2713aSLionel Sambuc BreakpointLocationList.cpp \ 16*f4a2713aSLionel Sambuc BreakpointOptions.cpp \ 17*f4a2713aSLionel Sambuc BreakpointResolver.cpp \ 18*f4a2713aSLionel Sambuc BreakpointResolverAddress.cpp \ 19*f4a2713aSLionel Sambuc BreakpointResolverFileLine.cpp \ 20*f4a2713aSLionel Sambuc BreakpointResolverFileRegex.cpp \ 21*f4a2713aSLionel Sambuc BreakpointResolverName.cpp \ 22*f4a2713aSLionel Sambuc BreakpointSite.cpp \ 23*f4a2713aSLionel Sambuc BreakpointSiteList.cpp \ 24*f4a2713aSLionel Sambuc Stoppoint.cpp \ 25*f4a2713aSLionel Sambuc StoppointCallbackContext.cpp \ 26*f4a2713aSLionel Sambuc StoppointLocation.cpp \ 27*f4a2713aSLionel Sambuc Watchpoint.cpp \ 28*f4a2713aSLionel Sambuc WatchpointList.cpp \ 29*f4a2713aSLionel Sambuc WatchpointOptions.cpp 30*f4a2713aSLionel Sambuc 31*f4a2713aSLionel Sambuc.if defined(HOSTLIB) 32*f4a2713aSLionel Sambuc.include <bsd.hostlib.mk> 33*f4a2713aSLionel Sambuc.else 34*f4a2713aSLionel Sambuc.include <bsd.lib.mk> 35*f4a2713aSLionel Sambuc.endif 36