mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-14 08:31:28 -04:00
24 lines
355 B
Makefile
24 lines
355 B
Makefile
# $NetBSD: Makefile,v 1.2 2011/03/18 23:32:01 joerg Exp $
|
|
|
|
PROG_CXX= llvm-diff
|
|
NOMAN= yes
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${LLVM_SRCDIR}/tools/llvm-diff
|
|
|
|
SRCS= llvm-diff.cpp \
|
|
DiffConsumer.cpp \
|
|
DiffLog.cpp \
|
|
DifferenceEngine.cpp
|
|
|
|
LLVM_LIBS+= \
|
|
AsmParser \
|
|
BitReader \
|
|
Core \
|
|
Support
|
|
|
|
.include "${.PARSEDIR}/../../link.mk"
|
|
|
|
.include <bsd.prog.mk>
|