1# $OpenBSD: Makefile,v 1.3 2021/04/28 12:55:41 patrick Exp $ 2 3LIB= lldbPluginInstrumentationRuntime 4NOPIC= 5NOPROFILE= 6 7.include <bsd.own.mk> 8SRCS= InstrumentationRuntimeASan.cpp \ 9 InstrumentationRuntimeMainThreadChecker.cpp \ 10 InstrumentationRuntimeTSan.cpp \ 11 InstrumentationRuntimeUBSan.cpp 12 13.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/InstrumentationRuntime/ASan 14.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker 15.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/InstrumentationRuntime/TSan 16.PATH: ${.CURDIR}/../../../llvm/lldb/source/Plugins/InstrumentationRuntime/UBSan 17 18install: 19 @# Nothing here so far ... 20 21.include <bsd.lib.mk> 22 23CPPFLAGS+= ${LLDB_INCLUDES} 24CPPFLAGS+= ${CLANG_INCLUDES} 25