27 lines
370 B
Makefile
27 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>
|