1 # $NetBSD: Makefile,v 1.2 2021/05/30 01:56:47 joerg Exp $ 2 3 PROG_CXX= llvm-diff 4 NOMAN= yes 5 6 .include <bsd.init.mk> 7 8 .PATH: ${LLVM_SRCDIR}/tools/llvm-diff 9 10 SRCS= llvm-diff.cpp \ 11 DiffConsumer.cpp \ 12 DiffLog.cpp \ 13 DifferenceEngine.cpp 14 15 LLVM_LIBS+= \ 16 IRReader \ 17 AsmParser \ 18 BitReader \ 19 BitstreamReader \ 20 IR \ 21 Remarks \ 22 BinaryFormat \ 23 Support \ 24 Demangle 25 26 .include "${.PARSEDIR}/../../link.mk" 27 28 .include <bsd.prog.mk> 29