blob: 33db908a2f21182a755ab2c932255cc4e6ce7251 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:07 joerg Exp $
LIB= LLVMInterpreter
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/ExecutionEngine/Interpreter
SRCS+= Execution.cpp \
ExternalFunctions.cpp \
Interpreter.cpp
.include <bsd.lib.mk>
|