Home | History | Annotate | Line # | Download | only in libLLVMGlobalISel
      1 #	$NetBSD: Makefile,v 1.2 2021/05/30 01:56:52 joerg Exp $
      2 
      3 LIB=	LLVMGlobalISel
      4 
      5 .include <bsd.init.mk>
      6 
      7 .PATH: ${LLVM_SRCDIR}/lib/CodeGen/GlobalISel
      8 
      9 SRCS+=	CallLowering.cpp \
     10 	Combiner.cpp \
     11 	CombinerHelper.cpp \
     12 	CSEInfo.cpp \
     13 	CSEMIRBuilder.cpp \
     14 	GISelChangeObserver.cpp \
     15 	GISelKnownBits.cpp \
     16 	GlobalISel.cpp \
     17 	InlineAsmLowering.cpp \
     18 	InstructionSelect.cpp \
     19 	InstructionSelector.cpp \
     20 	IRTranslator.cpp \
     21 	LegalityPredicates.cpp \
     22 	LegalizeMutations.cpp \
     23 	Legalizer.cpp \
     24 	LegalizerHelper.cpp \
     25 	LegalizerInfo.cpp \
     26 	Localizer.cpp \
     27 	LostDebugLocObserver.cpp \
     28 	MachineIRBuilder.cpp \
     29 	RegBankSelect.cpp \
     30 	RegisterBank.cpp \
     31 	RegisterBankInfo.cpp \
     32 	Utils.cpp
     33 
     34 .if defined(HOSTLIB)
     35 .include <bsd.hostlib.mk>
     36 .else
     37 .include <bsd.lib.mk>
     38 .endif
     39