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