xref: /minix3/external/bsd/llvm/lib/libLLVMSelectionDAG/Makefile (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc#	$NetBSD: Makefile,v 1.5 2015/01/29 20:41:36 joerg Exp $
2f4a2713aSLionel Sambuc
3f4a2713aSLionel SambucLIB=	LLVMSelectionDAG
4f4a2713aSLionel Sambuc
5f4a2713aSLionel Sambuc.include <bsd.init.mk>
6f4a2713aSLionel Sambuc
7f4a2713aSLionel Sambuc.PATH: ${LLVM_SRCDIR}/lib/CodeGen/SelectionDAG
8f4a2713aSLionel Sambuc
9f4a2713aSLionel SambucSRCS+=	DAGCombiner.cpp \
10f4a2713aSLionel Sambuc	FastISel.cpp \
11f4a2713aSLionel Sambuc	FunctionLoweringInfo.cpp \
12f4a2713aSLionel Sambuc	InstrEmitter.cpp \
13f4a2713aSLionel Sambuc	LegalizeDAG.cpp \
14f4a2713aSLionel Sambuc	LegalizeFloatTypes.cpp \
15f4a2713aSLionel Sambuc	LegalizeIntegerTypes.cpp \
16f4a2713aSLionel Sambuc	LegalizeTypes.cpp \
17f4a2713aSLionel Sambuc	LegalizeTypesGeneric.cpp \
18f4a2713aSLionel Sambuc	LegalizeVectorOps.cpp \
19f4a2713aSLionel Sambuc	LegalizeVectorTypes.cpp \
20f4a2713aSLionel Sambuc	ResourcePriorityQueue.cpp \
21f4a2713aSLionel Sambuc	ScheduleDAGFast.cpp \
22f4a2713aSLionel Sambuc	ScheduleDAGRRList.cpp \
23f4a2713aSLionel Sambuc	ScheduleDAGSDNodes.cpp \
24f4a2713aSLionel Sambuc	ScheduleDAGVLIW.cpp \
25f4a2713aSLionel Sambuc	SelectionDAG.cpp \
26f4a2713aSLionel Sambuc	SelectionDAGBuilder.cpp \
27f4a2713aSLionel Sambuc	SelectionDAGDumper.cpp \
28f4a2713aSLionel Sambuc	SelectionDAGISel.cpp \
29f4a2713aSLionel Sambuc	SelectionDAGPrinter.cpp \
30*0a6a1f1dSLionel Sambuc	StatepointLowering.cpp \
31f4a2713aSLionel Sambuc	TargetLowering.cpp \
32f4a2713aSLionel Sambuc	TargetSelectionDAGInfo.cpp
33f4a2713aSLionel Sambuc
34f4a2713aSLionel Sambuc.if defined(HOSTLIB)
35f4a2713aSLionel Sambuc.include <bsd.hostlib.mk>
36f4a2713aSLionel Sambuc.else
37f4a2713aSLionel Sambuc.include <bsd.lib.mk>
38f4a2713aSLionel Sambuc.endif
39