blob: f0b29ea015f5d1f898c298ee15a84385e2ce5dae (
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:12 joerg Exp $
LIB= LLVMToolDrivers
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/ToolDrivers/llvm-lib
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
|