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