1# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:14 joerg Exp $ 2 3LIB= LLVMXRay 4 5.include <bsd.init.mk> 6 7.PATH: ${LLVM_SRCDIR}/lib/XRay 8 9SRCS+= BlockIndexer.cpp \ 10 BlockPrinter.cpp \ 11 BlockVerifier.cpp \ 12 FDRRecordProducer.cpp \ 13 FDRRecords.cpp \ 14 FDRTraceExpander.cpp \ 15 FDRTraceWriter.cpp \ 16 FileHeaderReader.cpp \ 17 InstrumentationMap.cpp \ 18 LogBuilderConsumer.cpp \ 19 Profile.cpp \ 20 RecordInitializer.cpp \ 21 RecordPrinter.cpp \ 22 Trace.cpp 23 24.if defined(HOSTLIB) 25.include <bsd.hostlib.mk> 26.else 27.include <bsd.lib.mk> 28.endif 29