xref: /minix3/external/bsd/llvm/bin/llvm-mcld/Makefile (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc#	$NetBSD: Makefile,v 1.1 2013/02/27 21:25:08 joerg Exp $
2*f4a2713aSLionel Sambuc
3*f4a2713aSLionel SambucPROG_CXX=	ld.mcld
4*f4a2713aSLionel SambucNOMAN=		yes
5*f4a2713aSLionel Sambuc
6*f4a2713aSLionel Sambuc.include <bsd.init.mk>
7*f4a2713aSLionel Sambuc
8*f4a2713aSLionel Sambuc.PATH: ${MCLINKER_SRCDIR}/tools/llvm-mcld
9*f4a2713aSLionel Sambuc
10*f4a2713aSLionel SambucSRCS=	llvm-mcld.cpp
11*f4a2713aSLionel Sambuc
12*f4a2713aSLionel SambucMCLINKER_LIBS+= \
13*f4a2713aSLionel Sambuc	ARMTargetInfo \
14*f4a2713aSLionel Sambuc	ARMCodeGen \
15*f4a2713aSLionel Sambuc	MipsTargetInfo \
16*f4a2713aSLionel Sambuc	MipsCodeGen \
17*f4a2713aSLionel Sambuc	X86TargetInfo \
18*f4a2713aSLionel Sambuc	X86CodeGen \
19*f4a2713aSLionel Sambuc	Target \
20*f4a2713aSLionel Sambuc	CodeGen \
21*f4a2713aSLionel Sambuc	Core \
22*f4a2713aSLionel Sambuc	Object \
23*f4a2713aSLionel Sambuc	Fragment \
24*f4a2713aSLionel Sambuc	MC \
25*f4a2713aSLionel Sambuc	ADT \
26*f4a2713aSLionel Sambuc	Support \
27*f4a2713aSLionel Sambuc	LD \
28*f4a2713aSLionel Sambuc
29*f4a2713aSLionel SambucLLVM_LIBS+= \
30*f4a2713aSLionel Sambuc	AsmParser \
31*f4a2713aSLionel Sambuc	BitReader \
32*f4a2713aSLionel Sambuc	AArch64CodeGen \
33*f4a2713aSLionel Sambuc	AArch64TargetInfo \
34*f4a2713aSLionel Sambuc	AArch64AsmParser \
35*f4a2713aSLionel Sambuc	AArch64MCTargetDesc \
36*f4a2713aSLionel Sambuc	AArch64AsmPrinter \
37*f4a2713aSLionel Sambuc	AArch64Utils \
38*f4a2713aSLionel Sambuc	ARMCodeGen \
39*f4a2713aSLionel Sambuc	ARMTargetInfo \
40*f4a2713aSLionel Sambuc	ARMAsmParser \
41*f4a2713aSLionel Sambuc	ARMMCTargetDesc \
42*f4a2713aSLionel Sambuc	ARMAsmPrinter \
43*f4a2713aSLionel Sambuc	MipsCodeGen \
44*f4a2713aSLionel Sambuc	MipsTargetInfo \
45*f4a2713aSLionel Sambuc	MipsAsmParser \
46*f4a2713aSLionel Sambuc	MipsDisassembler \
47*f4a2713aSLionel Sambuc	MipsMCTargetDesc \
48*f4a2713aSLionel Sambuc	MipsAsmPrinter \
49*f4a2713aSLionel Sambuc	PowerPCCodeGen \
50*f4a2713aSLionel Sambuc	PowerPCTargetInfo \
51*f4a2713aSLionel Sambuc	PowerPCMCTargetDesc \
52*f4a2713aSLionel Sambuc	PowerPCAsmPrinter \
53*f4a2713aSLionel Sambuc	SparcCodeGen \
54*f4a2713aSLionel Sambuc	SparcTargetInfo \
55*f4a2713aSLionel Sambuc	SparcMCTargetDesc \
56*f4a2713aSLionel Sambuc	X86CodeGen \
57*f4a2713aSLionel Sambuc	X86TargetInfo \
58*f4a2713aSLionel Sambuc	X86MCTargetDesc \
59*f4a2713aSLionel Sambuc	X86AsmParser \
60*f4a2713aSLionel Sambuc	X86AsmPrinter \
61*f4a2713aSLionel Sambuc	X86Utils \
62*f4a2713aSLionel Sambuc	SelectionDAG \
63*f4a2713aSLionel Sambuc	CodeGen \
64*f4a2713aSLionel Sambuc	Target \
65*f4a2713aSLionel Sambuc	ScalarOpts \
66*f4a2713aSLionel Sambuc	TransformsUtils \
67*f4a2713aSLionel Sambuc	Analysis \
68*f4a2713aSLionel Sambuc	AsmPrinter \
69*f4a2713aSLionel Sambuc	MCParser \
70*f4a2713aSLionel Sambuc	MC \
71*f4a2713aSLionel Sambuc	IR \
72*f4a2713aSLionel Sambuc	Support
73*f4a2713aSLionel Sambuc
74*f4a2713aSLionel Sambuc.include "${.PARSEDIR}/../../link.mk"
75*f4a2713aSLionel Sambuc
76*f4a2713aSLionel Sambuc.include <bsd.prog.mk>
77