1#	$NetBSD: Makefile,v 1.2 2021/05/30 01:56:47 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	Analysis \
16	Object \
17	MCParser \
18	MC \
19	IR \
20	Remarks \
21	BinaryFormat \
22	Support \
23	Demangle
24
25.include "${.PARSEDIR}/../../link.mk"
26
27.include <bsd.prog.mk>
28