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