Files
netbsd/external/bsd/llvm/lib/libLLVMInstrumentation/Makefile
2013-04-06 16:48:33 +02:00

25 lines
472 B
Makefile

# $NetBSD: Makefile,v 1.7 2012/09/23 17:22:23 joerg Exp $
LIB= LLVMInstrumentation
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/Transforms/Instrumentation
SRCS+= AddressSanitizer.cpp \
BlackList.cpp \
BoundsChecking.cpp \
EdgeProfiling.cpp \
GCOVProfiling.cpp \
Instrumentation.cpp \
OptimalEdgeProfiling.cpp \
PathProfiling.cpp \
ProfilingUtils.cpp \
ThreadSanitizer.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif