Home | History | Annotate | Line # | Download | only in llvm-as
      1  1.2  joerg #	$NetBSD: Makefile,v 1.2 2021/05/30 01:56:47 joerg Exp $
      2  1.1  joerg 
      3  1.1  joerg PROG_CXX=	llvm-as
      4  1.1  joerg NOMAN=		yes
      5  1.1  joerg 
      6  1.1  joerg .include <bsd.init.mk>
      7  1.1  joerg 
      8  1.1  joerg .PATH: ${LLVM_SRCDIR}/tools/llvm-as
      9  1.1  joerg 
     10  1.1  joerg SRCS=	llvm-as.cpp
     11  1.1  joerg 
     12  1.1  joerg LLVM_LIBS+= \
     13  1.1  joerg 	AsmParser \
     14  1.1  joerg 	BitWriter \
     15  1.1  joerg 	Analysis \
     16  1.1  joerg 	Object \
     17  1.1  joerg 	MCParser \
     18  1.1  joerg 	MC \
     19  1.1  joerg 	IR \
     20  1.2  joerg 	Remarks \
     21  1.1  joerg 	BinaryFormat \
     22  1.1  joerg 	Support \
     23  1.1  joerg 	Demangle
     24  1.1  joerg 
     25  1.1  joerg .include "${.PARSEDIR}/../../link.mk"
     26  1.1  joerg 
     27  1.1  joerg .include <bsd.prog.mk>
     28