xref: /minix3/external/bsd/llvm/lib/libLLVMIR/Makefile (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc#	$NetBSD: Makefile,v 1.9 2015/01/29 20:41:35 joerg Exp $
2f4a2713aSLionel Sambuc
3f4a2713aSLionel SambucLIB=	LLVMIR
4f4a2713aSLionel Sambuc
5f4a2713aSLionel Sambuc.include <bsd.init.mk>
6f4a2713aSLionel Sambuc
7f4a2713aSLionel Sambuc.PATH: ${LLVM_SRCDIR}/lib/IR
8f4a2713aSLionel Sambuc
9f4a2713aSLionel SambucSRCS+=	AsmWriter.cpp \
10f4a2713aSLionel Sambuc	Attributes.cpp \
11f4a2713aSLionel Sambuc	AutoUpgrade.cpp \
12f4a2713aSLionel Sambuc	BasicBlock.cpp \
13*0a6a1f1dSLionel Sambuc	Comdat.cpp \
14f4a2713aSLionel Sambuc	ConstantFold.cpp \
15*0a6a1f1dSLionel Sambuc	ConstantRange.cpp \
16f4a2713aSLionel Sambuc	Constants.cpp \
17f4a2713aSLionel Sambuc	Core.cpp \
18f4a2713aSLionel Sambuc	DIBuilder.cpp \
19f4a2713aSLionel Sambuc	DataLayout.cpp \
20f4a2713aSLionel Sambuc	DebugInfo.cpp \
21f4a2713aSLionel Sambuc	DebugLoc.cpp \
22*0a6a1f1dSLionel Sambuc	DiagnosticInfo.cpp \
23*0a6a1f1dSLionel Sambuc	DiagnosticPrinter.cpp \
24f4a2713aSLionel Sambuc	Dominators.cpp \
25f4a2713aSLionel Sambuc	Function.cpp \
26f4a2713aSLionel Sambuc	GCOV.cpp \
27f4a2713aSLionel Sambuc	GVMaterializer.cpp \
28f4a2713aSLionel Sambuc	Globals.cpp \
29f4a2713aSLionel Sambuc	IRBuilder.cpp \
30*0a6a1f1dSLionel Sambuc	IRPrintingPasses.cpp \
31f4a2713aSLionel Sambuc	InlineAsm.cpp \
32f4a2713aSLionel Sambuc	Instruction.cpp \
33f4a2713aSLionel Sambuc	Instructions.cpp \
34f4a2713aSLionel Sambuc	IntrinsicInst.cpp \
35f4a2713aSLionel Sambuc	LLVMContext.cpp \
36f4a2713aSLionel Sambuc	LLVMContextImpl.cpp \
37f4a2713aSLionel Sambuc	LegacyPassManager.cpp \
38*0a6a1f1dSLionel Sambuc	MDBuilder.cpp \
39*0a6a1f1dSLionel Sambuc	Mangler.cpp \
40f4a2713aSLionel Sambuc	Metadata.cpp \
41*0a6a1f1dSLionel Sambuc	MetadataTracking.cpp \
42f4a2713aSLionel Sambuc	Module.cpp \
43f4a2713aSLionel Sambuc	Pass.cpp \
44f4a2713aSLionel Sambuc	PassManager.cpp \
45f4a2713aSLionel Sambuc	PassRegistry.cpp \
46*0a6a1f1dSLionel Sambuc	Statepoint.cpp \
47f4a2713aSLionel Sambuc	Type.cpp \
48f4a2713aSLionel Sambuc	TypeFinder.cpp \
49f4a2713aSLionel Sambuc	Use.cpp \
50*0a6a1f1dSLionel Sambuc	UseListOrder.cpp \
51f4a2713aSLionel Sambuc	User.cpp \
52f4a2713aSLionel Sambuc	Value.cpp \
53f4a2713aSLionel Sambuc	ValueSymbolTable.cpp \
54f4a2713aSLionel Sambuc	ValueTypes.cpp \
55f4a2713aSLionel Sambuc	Verifier.cpp
56f4a2713aSLionel Sambuc
57f4a2713aSLionel Sambuc.if defined(HOSTLIB)
58f4a2713aSLionel Sambuc.include <bsd.hostlib.mk>
59f4a2713aSLionel Sambuc.else
60f4a2713aSLionel Sambuc.include <bsd.lib.mk>
61f4a2713aSLionel Sambuc.endif
62