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