xref: /minix3/external/bsd/llvm/lib/libMCLinkerLD/Makefile (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc#	$NetBSD: Makefile,v 1.2 2013/03/13 13:21:18 joerg Exp $
2*f4a2713aSLionel Sambuc
3*f4a2713aSLionel SambucLIB=	MCLinkerLD
4*f4a2713aSLionel Sambuc
5*f4a2713aSLionel Sambuc.include <bsd.init.mk>
6*f4a2713aSLionel Sambuc
7*f4a2713aSLionel Sambuc.PATH: ${MCLINKER_SRCDIR}/lib/LD
8*f4a2713aSLionel Sambuc
9*f4a2713aSLionel SambucSRCS=	Archive.cpp \
10*f4a2713aSLionel Sambuc	ArchiveReader.cpp \
11*f4a2713aSLionel Sambuc	BranchIsland.cpp \
12*f4a2713aSLionel Sambuc	BranchIslandFactory.cpp \
13*f4a2713aSLionel Sambuc	BSDArchiveReader.cpp \
14*f4a2713aSLionel Sambuc	Diagnostic.cpp \
15*f4a2713aSLionel Sambuc	DiagnosticEngine.cpp \
16*f4a2713aSLionel Sambuc	DiagnosticInfos.cpp \
17*f4a2713aSLionel Sambuc	DiagnosticLineInfo.cpp \
18*f4a2713aSLionel Sambuc	DiagnosticPrinter.cpp \
19*f4a2713aSLionel Sambuc	DWARFLineInfo.cpp \
20*f4a2713aSLionel Sambuc	DynObjReader.cpp \
21*f4a2713aSLionel Sambuc	EhFrame.cpp \
22*f4a2713aSLionel Sambuc	EhFrameHdr.cpp \
23*f4a2713aSLionel Sambuc	EhFrameReader.cpp \
24*f4a2713aSLionel Sambuc	ELFBinaryReader.cpp \
25*f4a2713aSLionel Sambuc	ELFDynObjFileFormat.cpp \
26*f4a2713aSLionel Sambuc	ELFDynObjReader.cpp \
27*f4a2713aSLionel Sambuc	ELFExecFileFormat.cpp \
28*f4a2713aSLionel Sambuc	ELFFileFormat.cpp \
29*f4a2713aSLionel Sambuc	ELFObjectReader.cpp \
30*f4a2713aSLionel Sambuc	ELFObjectWriter.cpp \
31*f4a2713aSLionel Sambuc	ELFReader.cpp \
32*f4a2713aSLionel Sambuc	ELFReaderIf.cpp \
33*f4a2713aSLionel Sambuc	ELFSegment.cpp \
34*f4a2713aSLionel Sambuc	ELFSegmentFactory.cpp \
35*f4a2713aSLionel Sambuc	GNUArchiveReader.cpp \
36*f4a2713aSLionel Sambuc	GroupReader.cpp \
37*f4a2713aSLionel Sambuc	LDContext.cpp \
38*f4a2713aSLionel Sambuc	LDFileFormat.cpp \
39*f4a2713aSLionel Sambuc	LDReader.cpp \
40*f4a2713aSLionel Sambuc	LDSection.cpp \
41*f4a2713aSLionel Sambuc	LDSymbol.cpp \
42*f4a2713aSLionel Sambuc	MsgHandler.cpp \
43*f4a2713aSLionel Sambuc	NamePool.cpp \
44*f4a2713aSLionel Sambuc	ObjectWriter.cpp \
45*f4a2713aSLionel Sambuc	RelocationFactory.cpp \
46*f4a2713aSLionel Sambuc	Relocator.cpp \
47*f4a2713aSLionel Sambuc	RelocData.cpp \
48*f4a2713aSLionel Sambuc	ResolveInfo.cpp \
49*f4a2713aSLionel Sambuc	Resolver.cpp \
50*f4a2713aSLionel Sambuc	SectionData.cpp \
51*f4a2713aSLionel Sambuc	SectionRules.cpp \
52*f4a2713aSLionel Sambuc	SectionSymbolSet.cpp \
53*f4a2713aSLionel Sambuc	StaticResolver.cpp \
54*f4a2713aSLionel Sambuc	StubFactory.cpp \
55*f4a2713aSLionel Sambuc	TextDiagnosticPrinter.cpp
56*f4a2713aSLionel Sambuc
57*f4a2713aSLionel Sambuc.if defined(HOSTLIB)
58*f4a2713aSLionel Sambuc.include <bsd.hostlib.mk>
59*f4a2713aSLionel Sambuc.else
60*f4a2713aSLionel Sambuc.include <bsd.lib.mk>
61*f4a2713aSLionel Sambuc.endif
62