1# $NetBSD: Makefile,v 1.1 2019/11/11 22:44:59 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 BinaryFormat \ 21 Support \ 22 Demangle 23 24.include "${.PARSEDIR}/../../link.mk" 25 26.include <bsd.prog.mk> 27