opnsense-src/lib/clang/libllvminstrumentation/Makefile
Dimitry Andric 999971f7f7 Minimize the number of files compiled for clang only (e.g. when neither
WITH_CLANG_EXTRAS nor WITH_LLDB is in effect).
2015-09-06 22:02:13 +00:00

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"