f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
26 lines
370 B
Makefile
26 lines
370 B
Makefile
# $NetBSD: Makefile,v 1.4 2013/04/25 13:59:56 joerg Exp $
|
|
|
|
PROG_CXX= llvm-link
|
|
NOMAN= yes
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${LLVM_SRCDIR}/tools/llvm-link
|
|
|
|
SRCS= llvm-link.cpp
|
|
|
|
LLVM_LIBS+= \
|
|
IRReader \
|
|
AsmParser \
|
|
BitReader \
|
|
BitWriter \
|
|
Linker \
|
|
TransformsUtils \
|
|
Analysis \
|
|
Target \
|
|
IR \
|
|
Support
|
|
|
|
.include "${.PARSEDIR}/../../link.mk"
|
|
|
|
.include <bsd.prog.mk>
|