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