1# $OpenBSD: Makefile,v 1.6 2023/11/11 18:35:39 robert Exp $ 2 3LIB= lldbPluginPlatform 4NOPIC= 5NOPROFILE= 6 7.include <bsd.own.mk> 8SRCS= AdbClient.cpp \ 9 PlatformAndroid.cpp \ 10 PlatformAndroidRemoteGDBServer.cpp \ 11 PlatformFreeBSD.cpp \ 12 PlatformLinux.cpp \ 13 PlatformDarwin.cpp \ 14 PlatformDarwinDevice.cpp \ 15 PlatformDarwinKernel.cpp \ 16 PlatformMacOSX.cpp \ 17 PlatformRemoteAppleBridge.cpp \ 18 PlatformRemoteAppleTV.cpp \ 19 PlatformRemoteAppleWatch.cpp \ 20 PlatformRemoteDarwinDevice.cpp \ 21 PlatformRemoteMacOSX.cpp \ 22 PlatformRemoteiOS.cpp \ 23 PlatformAppleSimulator.cpp \ 24 PlatformNetBSD.cpp \ 25 PlatformOpenBSD.cpp \ 26 PlatformPOSIX.cpp \ 27 PlatformWindows.cpp \ 28 PlatformRemoteGDBServer.cpp 29 30.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/Android 31.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/FreeBSD 32.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/Linux 33.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/MacOSX 34.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/NetBSD 35.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/OpenBSD 36.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/POSIX 37.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/Windows 38.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/gdb-server 39 40install: 41 @# Nothing here so far ... 42 43.include <bsd.lib.mk> 44 45CPPFLAGS+= ${LLDB_INCLUDES} 46CPPFLAGS+= ${CLANG_INCLUDES} 47CPPFLAGS+= -I${.OBJDIR}/../include/lldb/Plugins 48