Home | History | Annotate | Line # | Download | only in libLLVMOrc
Makefile revision 1.1
      1 #	$NetBSD: Makefile,v 1.1 2019/11/11 22:45:10 joerg Exp $
      2 
      3 LIB=	LLVMOrc
      4 
      5 .include <bsd.init.mk>
      6 
      7 .PATH: ${LLVM_SRCDIR}/lib/ExecutionEngine/Orc
      8 
      9 SRCS+=	CompileOnDemandLayer.cpp \
     10 	CompileUtils.cpp \
     11 	Core.cpp \
     12 	ExecutionUtils.cpp \
     13 	IndirectionUtils.cpp \
     14 	IRCompileLayer.cpp \
     15 	IRTransformLayer.cpp \
     16 	JITTargetMachineBuilder.cpp \
     17 	Layer.cpp \
     18 	LazyReexports.cpp \
     19 	Legacy.cpp \
     20 	LLJIT.cpp \
     21 	NullResolver.cpp \
     22 	ObjectLinkingLayer.cpp \
     23 	ObjectTransformLayer.cpp \
     24 	OrcABISupport.cpp \
     25 	OrcCBindings.cpp \
     26 	OrcError.cpp \
     27 	OrcMCJITReplacement.cpp \
     28 	RPCUtils.cpp \
     29 	RTDyldObjectLinkingLayer.cpp \
     30 	SpeculateAnalyses.cpp \
     31 	Speculation.cpp \
     32 	ThreadSafeModule.cpp
     33 
     34 .include <bsd.lib.mk>
     35