mirror of
https://github.com/opnsense/src.git
synced 2026-04-24 07:37:25 -04:00
24 lines
421 B
Makefile
24 lines
421 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
LIB= llvminstrumentation
|
|
|
|
SRCDIR= lib/Transforms/Instrumentation
|
|
SRCS= AddressSanitizer.cpp \
|
|
BoundsChecking.cpp \
|
|
DataFlowSanitizer.cpp \
|
|
GCOVProfiling.cpp \
|
|
MemorySanitizer.cpp \
|
|
InstrProfiling.cpp \
|
|
SafeStack.cpp \
|
|
SanitizerCoverage.cpp \
|
|
ThreadSanitizer.cpp
|
|
|
|
.if ${MK_CLANG_EXTRAS} != "no"
|
|
SRCS+= Instrumentation.cpp
|
|
.endif
|
|
|
|
TGHDRS= Intrinsics
|
|
|
|
.include "../clang.lib.mk"
|