blob: a646621b67e316292ee19dfcd44dd247ffd1ead3 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# $NetBSD: Makefile,v 1.3 2021/05/30 01:56:49 joerg Exp $
PROG_CXX= llvm-symbolizer
NOMAN= yes
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/tools/llvm-symbolizer
SRCS= llvm-symbolizer.cpp
LLVM_LIBS+= \
DebugInfoSymbolize \
DebugInfoDWARF \
DebugInfoPDB \
DebugInfoMSF \
DebugInfoCodeView \
Object \
TextAPI \
MCParser \
MC \
BitReader \
BitstreamReader \
IR \
Remarks \
BinaryFormat \
ObjectYAML \
TextAPI \
Option \
Support \
Demangle
LDADD+= -lz
DPADD+= ${LIBZ}
TABLEGEN_SRC= Opts.td
TABLEGEN_OUTPUT.Opts.td= \
Opts.inc|-gen-opt-parser-defs
.include "${.PARSEDIR}/../../tablegen.mk"
.include "${.PARSEDIR}/../../link.mk"
.include <bsd.prog.mk>
|