1# $OpenBSD: Makefile,v 1.5 2021/12/17 14:55:46 patrick Exp $ 2 3LIB= lldbBreakpoint 4NOPIC= 5NOPROFILE= 6 7.include <bsd.own.mk> 8 9SRCS= Breakpoint.cpp \ 10 BreakpointID.cpp \ 11 BreakpointIDList.cpp \ 12 BreakpointList.cpp \ 13 BreakpointLocation.cpp \ 14 BreakpointLocationCollection.cpp \ 15 BreakpointLocationList.cpp \ 16 BreakpointName.cpp \ 17 BreakpointOptions.cpp \ 18 BreakpointPrecondition.cpp \ 19 BreakpointResolver.cpp \ 20 BreakpointResolverAddress.cpp \ 21 BreakpointResolverFileLine.cpp \ 22 BreakpointResolverFileRegex.cpp \ 23 BreakpointResolverName.cpp \ 24 BreakpointResolverScripted.cpp \ 25 BreakpointSite.cpp \ 26 BreakpointSiteList.cpp \ 27 Stoppoint.cpp \ 28 StoppointCallbackContext.cpp \ 29 StoppointSite.cpp \ 30 Watchpoint.cpp \ 31 WatchpointList.cpp \ 32 WatchpointOptions.cpp 33 34.PATH: ${.CURDIR}/../../../llvm/lldb/source/Breakpoint 35 36install: 37 @# Nothing here so far ... 38 39.include <bsd.lib.mk> 40 41CPPFLAGS+= ${LLDB_INCLUDES} 42CPPFLAGS+= ${CLANG_INCLUDES} 43