1*76c7fc5fSjoerg# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:11 joerg Exp $ 2*76c7fc5fSjoerg 3*76c7fc5fSjoergLIB= LLVMRuntimeDyld 4*76c7fc5fSjoerg 5*76c7fc5fSjoerg.include <bsd.init.mk> 6*76c7fc5fSjoerg 7*76c7fc5fSjoerg.PATH: ${LLVM_SRCDIR}/lib/ExecutionEngine/RuntimeDyld 8*76c7fc5fSjoerg.PATH: ${LLVM_SRCDIR}/lib/ExecutionEngine/RuntimeDyld/Targets 9*76c7fc5fSjoerg 10*76c7fc5fSjoergSRCS+= JITSymbol.cpp \ 11*76c7fc5fSjoerg RTDyldMemoryManager.cpp \ 12*76c7fc5fSjoerg RuntimeDyld.cpp \ 13*76c7fc5fSjoerg RuntimeDyldCOFF.cpp \ 14*76c7fc5fSjoerg RuntimeDyldChecker.cpp \ 15*76c7fc5fSjoerg RuntimeDyldELF.cpp \ 16*76c7fc5fSjoerg RuntimeDyldMachO.cpp 17*76c7fc5fSjoerg 18*76c7fc5fSjoergSRCS+= RuntimeDyldELFMips.cpp 19*76c7fc5fSjoerg 20*76c7fc5fSjoerg.if defined(HOSTLIB) 21*76c7fc5fSjoerg.include <bsd.hostlib.mk> 22*76c7fc5fSjoerg.else 23*76c7fc5fSjoerg.include <bsd.lib.mk> 24*76c7fc5fSjoerg.endif 25