1# $OpenBSD: Makefile,v 1.2 2019/06/23 22:07:45 patrick Exp $ 2 3LIB= lldbTarget 4NOPIC= 5NOPROFILE= 6 7.include <bsd.own.mk> 8SRCS= ABI.cpp \ 9 CPPLanguageRuntime.cpp \ 10 ExecutionContext.cpp \ 11 FileAction.cpp \ 12 JITLoader.cpp \ 13 JITLoaderList.cpp \ 14 InstrumentationRuntime.cpp \ 15 InstrumentationRuntimeStopInfo.cpp \ 16 Language.cpp \ 17 LanguageRuntime.cpp \ 18 Memory.cpp \ 19 MemoryHistory.cpp \ 20 ModuleCache.cpp \ 21 ObjCLanguageRuntime.cpp \ 22 OperatingSystem.cpp \ 23 PathMappingList.cpp \ 24 Platform.cpp \ 25 Process.cpp \ 26 ProcessInfo.cpp \ 27 ProcessLaunchInfo.cpp \ 28 Queue.cpp \ 29 QueueItem.cpp \ 30 QueueList.cpp \ 31 RegisterContext.cpp \ 32 RegisterNumber.cpp \ 33 SectionLoadHistory.cpp \ 34 SectionLoadList.cpp \ 35 StackFrame.cpp \ 36 StackFrameList.cpp \ 37 StackFrameRecognizer.cpp \ 38 StackID.cpp \ 39 StopInfo.cpp \ 40 StructuredDataPlugin.cpp \ 41 SystemRuntime.cpp \ 42 Target.cpp \ 43 TargetList.cpp \ 44 Thread.cpp \ 45 ThreadCollection.cpp \ 46 ThreadList.cpp \ 47 ThreadPlan.cpp \ 48 ThreadPlanBase.cpp \ 49 ThreadPlanCallFunction.cpp \ 50 ThreadPlanCallFunctionUsingABI.cpp \ 51 ThreadPlanCallOnFunctionExit.cpp \ 52 ThreadPlanCallUserExpression.cpp \ 53 ThreadPlanPython.cpp \ 54 ThreadPlanRunToAddress.cpp \ 55 ThreadPlanShouldStopHere.cpp \ 56 ThreadPlanStepInRange.cpp \ 57 ThreadPlanStepInstruction.cpp \ 58 ThreadPlanStepOut.cpp \ 59 ThreadPlanStepOverBreakpoint.cpp \ 60 ThreadPlanStepOverRange.cpp \ 61 ThreadPlanStepRange.cpp \ 62 ThreadPlanStepThrough.cpp \ 63 ThreadPlanStepUntil.cpp \ 64 ThreadPlanTracer.cpp \ 65 ThreadSpec.cpp \ 66 UnixSignals.cpp \ 67 UnwindAssembly.cpp \ 68 69.PATH: ${.CURDIR}/../../../llvm/tools/lldb/source/Target 70 71install: 72 @# Nothing here so far ... 73 74.include <bsd.lib.mk> 75 76CPPFLAGS+= ${LLDB_INCLUDES} 77CPPFLAGS+= ${CLANG_INCLUDES} 78