blob: dee88aa25212e40818a95bb81b7eaf22bb509fba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile,v 1.12 2013/10/14 21:19:16 joerg Exp $
LIB= LLVMInstrumentation
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/Transforms/Instrumentation
SRCS+= AddressSanitizer.cpp \
BoundsChecking.cpp \
DataFlowSanitizer.cpp \
DebugIR.cpp \
GCOVProfiling.cpp \
Instrumentation.cpp \
MemorySanitizer.cpp \
ThreadSanitizer.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|