xref: /minix3/external/bsd/llvm/bin/llvm-extract/Makefile (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1#	$NetBSD: Makefile,v 1.4 2013/04/25 13:59:56 joerg Exp $
2
3PROG_CXX=	llvm-extract
4NOMAN=		yes
5
6.include <bsd.init.mk>
7
8.PATH: ${LLVM_SRCDIR}/tools/llvm-extract
9
10SRCS=	llvm-extract.cpp
11
12LLVM_LIBS+= \
13	IRReader \
14	AsmParser \
15	BitReader \
16	BitWriter \
17	ipo \
18	TransformsUtils \
19	Analysis \
20	Target \
21	ipa \
22	IR \
23	Support
24
25.include "${.PARSEDIR}/../../link.mk"
26
27.include <bsd.prog.mk>
28