1# $OpenBSD: Makefile,v 1.4 2021/04/28 12:55:42 patrick 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 PlatformDarwinKernel.cpp \ 15 PlatformMacOSX.cpp \ 16 PlatformRemoteiOS.cpp \ 17 PlatformRemoteAppleTV.cpp \ 18 PlatformRemoteAppleWatch.cpp \ 19 PlatformRemoteDarwinDevice.cpp \ 20 PlatformRemoteAppleBridge.cpp \ 21 PlatformNetBSD.cpp \ 22 PlatformOpenBSD.cpp \ 23 PlatformPOSIX.cpp \ 24 PlatformWindows.cpp \ 25 PlatformRemoteGDBServer.cpp 26 27.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/Android 28.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/FreeBSD 29.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/Linux 30.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/MacOSX 31.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/NetBSD 32.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/OpenBSD 33.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/POSIX 34.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/Windows 35.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/Platform/gdb-server 36 37install: 38 @# Nothing here so far ... 39 40.include <bsd.lib.mk> 41 42CPPFLAGS+= ${LLDB_INCLUDES} 43CPPFLAGS+= ${CLANG_INCLUDES} 44