1*0a6a1f1dSLionel Sambuc# $NetBSD: Makefile,v 1.3 2015/01/29 20:41:36 joerg Exp $ 2*0a6a1f1dSLionel Sambuc 3*0a6a1f1dSLionel SambucLIB= LLVMProfileData 4*0a6a1f1dSLionel Sambuc 5*0a6a1f1dSLionel Sambuc.include <bsd.init.mk> 6*0a6a1f1dSLionel Sambuc 7*0a6a1f1dSLionel Sambuc.PATH: ${LLVM_SRCDIR}/lib/ProfileData 8*0a6a1f1dSLionel Sambuc 9*0a6a1f1dSLionel SambucSRCS+= CoverageMapping.cpp \ 10*0a6a1f1dSLionel Sambuc CoverageMappingReader.cpp \ 11*0a6a1f1dSLionel Sambuc CoverageMappingWriter.cpp \ 12*0a6a1f1dSLionel Sambuc InstrProf.cpp \ 13*0a6a1f1dSLionel Sambuc InstrProfReader.cpp \ 14*0a6a1f1dSLionel Sambuc InstrProfWriter.cpp \ 15*0a6a1f1dSLionel Sambuc SampleProf.cpp \ 16*0a6a1f1dSLionel Sambuc SampleProfReader.cpp \ 17*0a6a1f1dSLionel Sambuc SampleProfWriter.cpp 18*0a6a1f1dSLionel Sambuc 19*0a6a1f1dSLionel Sambuc.if defined(HOSTLIB) 20*0a6a1f1dSLionel Sambuc.include <bsd.hostlib.mk> 21*0a6a1f1dSLionel Sambuc.else 22*0a6a1f1dSLionel Sambuc.include <bsd.lib.mk> 23*0a6a1f1dSLionel Sambuc.endif 24