blob: 43ae21098d440a77a82e89fcb6658a45363c3394 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:07 joerg Exp $
LIB= LLVMLibDriver
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/LibDriver
SRCS+= LibDriver.cpp
TABLEGEN_SRC= Options.td
TABLEGEN_OUTPUT= \
Options.inc|-gen-opt-parser-defs
.include "${.PARSEDIR}/../../tablegen.mk"
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|