xref: /minix3/external/bsd/llvm/bin/llvm-readobj/Makefile (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc#	$NetBSD: Makefile,v 1.8 2014/08/10 17:34:20 joerg Exp $
2f4a2713aSLionel Sambuc
3f4a2713aSLionel SambucPROG_CXX=	llvm-readobj
4f4a2713aSLionel SambucNOMAN=		yes
5f4a2713aSLionel Sambuc
6f4a2713aSLionel Sambuc.include <bsd.init.mk>
7f4a2713aSLionel Sambuc
8f4a2713aSLionel Sambuc.PATH: ${LLVM_SRCDIR}/tools/llvm-readobj
9f4a2713aSLionel Sambuc
10f4a2713aSLionel SambucSRCS=	llvm-readobj.cpp \
11*0a6a1f1dSLionel Sambuc	ARMAttributeParser.cpp \
12*0a6a1f1dSLionel Sambuc	ARMWinEHPrinter.cpp \
13f4a2713aSLionel Sambuc	COFFDumper.cpp \
14f4a2713aSLionel Sambuc	ELFDumper.cpp \
15f4a2713aSLionel Sambuc	Error.cpp \
16f4a2713aSLionel Sambuc	MachODumper.cpp \
17f4a2713aSLionel Sambuc	ObjDumper.cpp \
18*0a6a1f1dSLionel Sambuc	StreamWriter.cpp \
19*0a6a1f1dSLionel Sambuc	Win64EHDumper.cpp
20f4a2713aSLionel Sambuc
21f4a2713aSLionel SambucLLVM_LIBS+= \
22f4a2713aSLionel Sambuc	AArch64TargetInfo \
23f4a2713aSLionel Sambuc	ARMTargetInfo \
24f4a2713aSLionel Sambuc	MipsTargetInfo \
25f4a2713aSLionel Sambuc	PowerPCTargetInfo \
26f4a2713aSLionel Sambuc	SparcTargetInfo \
27f4a2713aSLionel Sambuc	X86TargetInfo \
28f4a2713aSLionel Sambuc	Object \
29*0a6a1f1dSLionel Sambuc	MC \
30*0a6a1f1dSLionel Sambuc	MCParser \
31*0a6a1f1dSLionel Sambuc	BitReader \
32f4a2713aSLionel Sambuc	IR \
33f4a2713aSLionel Sambuc	Support
34f4a2713aSLionel Sambuc
35f4a2713aSLionel Sambuc.include "${.PARSEDIR}/../../link.mk"
36f4a2713aSLionel Sambuc
37f4a2713aSLionel Sambuc.include <bsd.prog.mk>
38