1# $OpenBSD: Makefile,v 1.4 2021/04/28 12:55:41 patrick Exp $ 2 3LIB= lldbPluginLanguageRuntime 4NOPIC= 5NOPROFILE= 6 7.include <bsd.own.mk> 8 9# CPlusPlus 10SRCS+= CPPLanguageRuntime.cpp \ 11 ItaniumABILanguageRuntime.cpp 12 13# ObjC 14SRCS+= ObjCLanguageRuntime.cpp \ 15 AppleObjCRuntime.cpp \ 16 AppleObjCRuntimeV1.cpp \ 17 AppleObjCRuntimeV2.cpp \ 18 AppleObjCTrampolineHandler.cpp \ 19 AppleObjCDeclVendor.cpp \ 20 AppleThreadPlanStepThroughObjCTrampoline.cpp \ 21 AppleObjCClassDescriptorV2.cpp \ 22 AppleObjCTypeEncodingParser.cpp 23 24# RenderScript 25SRCS+= RenderScriptRuntime.cpp \ 26 RenderScriptExpressionOpts.cpp \ 27 RenderScriptx86ABIFixups.cpp \ 28 RenderScriptScriptGroup.cpp 29 30.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/LanguageRuntime/CPlusPlus 31.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI 32.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/LanguageRuntime/ObjC 33.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime 34.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime 35 36install: 37 @# Nothing here so far ... 38 39.include <bsd.lib.mk> 40 41CPPFLAGS+= ${LLDB_INCLUDES} 42CPPFLAGS+= ${CLANG_INCLUDES} 43