21 lines
360 B
Makefile
21 lines
360 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= llvminstrumentation
|
|
|
|
SRCDIR= lib/Transforms/Instrumentation
|
|
SRCS= AddressSanitizer.cpp \
|
|
BoundsChecking.cpp \
|
|
DataFlowSanitizer.cpp \
|
|
GCOVProfiling.cpp \
|
|
MemorySanitizer.cpp \
|
|
Instrumentation.cpp \
|
|
InstrProfiling.cpp \
|
|
SanitizerCoverage.cpp \
|
|
ThreadSanitizer.cpp
|
|
|
|
TGHDRS= Intrinsics
|
|
|
|
.include "../clang.lib.mk"
|