blob: 51b8912c7dbc081d699dd05ad6a560564d0291a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $OpenBSD: Makefile,v 1.2 2020/08/03 14:45:30 patrick Exp $
LIB= lldbPluginInstrumentationRuntime
NOPIC=
NOPROFILE=
.include <bsd.own.mk>
SRCS= ASanRuntime.cpp \
MainThreadCheckerRuntime.cpp \
TSanRuntime.cpp \
UBSanRuntime.cpp \
.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/InstrumentationRuntime/ASan
.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker
.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/InstrumentationRuntime/TSan
.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/InstrumentationRuntime/UBSan
install:
@# Nothing here so far ...
.include <bsd.lib.mk>
CPPFLAGS+= ${LLDB_INCLUDES}
CPPFLAGS+= ${CLANG_INCLUDES}
|