xref: /minix/external/bsd/llvm/bin/llvm-as/Makefile (revision 4684ddb6)
1#	$NetBSD: Makefile,v 1.2 2013/01/23 15:02:55 joerg Exp $
2
3PROG_CXX=	llvm-as
4NOMAN=		yes
5
6.include <bsd.init.mk>
7
8.PATH: ${LLVM_SRCDIR}/tools/llvm-as
9
10SRCS=	llvm-as.cpp
11
12LLVM_LIBS+= \
13	AsmParser \
14	BitWriter \
15	IR \
16	Support
17
18.include "${.PARSEDIR}/../../link.mk"
19
20.include <bsd.prog.mk>
21