1 1.1 joerg # $NetBSD: Makefile,v 1.1 2019/11/11 22:45:07 joerg Exp $ 2 1.1 joerg 3 1.1 joerg LIB= LLVMInstrumentation 4 1.1 joerg 5 1.1 joerg .include <bsd.init.mk> 6 1.1 joerg 7 1.1 joerg .PATH: ${LLVM_SRCDIR}/lib/Transforms/Instrumentation 8 1.1 joerg 9 1.1 joerg SRCS+= AddressSanitizer.cpp \ 10 1.1 joerg BoundsChecking.cpp \ 11 1.1 joerg CGProfile.cpp \ 12 1.1 joerg ControlHeightReduction.cpp \ 13 1.1 joerg DataFlowSanitizer.cpp \ 14 1.1 joerg GCOVProfiling.cpp \ 15 1.1 joerg HWAddressSanitizer.cpp \ 16 1.1 joerg IndirectCallPromotion.cpp \ 17 1.1 joerg InstrOrderFile.cpp \ 18 1.1 joerg InstrProfiling.cpp \ 19 1.1 joerg Instrumentation.cpp \ 20 1.1 joerg MemorySanitizer.cpp \ 21 1.1 joerg PGOInstrumentation.cpp \ 22 1.1 joerg PGOMemOPSizeOpt.cpp \ 23 1.1 joerg PoisonChecking.cpp \ 24 1.1 joerg SanitizerCoverage.cpp \ 25 1.1 joerg ThreadSanitizer.cpp \ 26 1.1 joerg ValueProfileCollector.cpp 27 1.1 joerg 28 1.1 joerg .if defined(HOSTLIB) 29 1.1 joerg .include <bsd.hostlib.mk> 30 1.1 joerg .else 31 1.1 joerg .include <bsd.lib.mk> 32 1.1 joerg .endif 33