1# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:01 joerg Exp $ 2 3PROG_CXX= sanstats 4NOMAN= yes 5 6.include <bsd.init.mk> 7 8.PATH: ${LLVM_SRCDIR}/tools/sanstats 9 10SRCS= sanstats.cc 11 12LLVM_LIBS+= \ 13 DebugInfoSymbolize \ 14 DebugInfoDWARF \ 15 DebugInfoPDB \ 16 DebugInfoPDBNative \ 17 Object \ 18 MCParser \ 19 MC \ 20 BitReader \ 21 BitstreamReader \ 22 IR \ 23 BinaryFormat \ 24 Support \ 25 Demangle 26 27.include "${.PARSEDIR}/../../link.mk" 28 29LDADD+= -lz 30.if !defined(HOSTPROG) 31DPADD+= ${LIBZ} 32.endif 33 34.include <bsd.prog.mk> 35