blob: 41feefcc04b7644ea636969fd7c55c2dede82bbe (
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
|
# $NetBSD: Makefile,v 1.2 2021/05/30 01:56:50 joerg Exp $
LIB= LLVMAsmPrinter
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/CodeGen/AsmPrinter
SRCS+= AccelTable.cpp \
AddressPool.cpp \
AIXException.cpp \
ARMException.cpp \
AsmPrinter.cpp \
AsmPrinterDwarf.cpp \
AsmPrinterInlineAsm.cpp \
CodeViewDebug.cpp \
DbgEntityHistoryCalculator.cpp \
DebugHandlerBase.cpp \
DebugLocStream.cpp \
DIE.cpp \
DIEHash.cpp \
DwarfCFIException.cpp \
DwarfCompileUnit.cpp \
DwarfDebug.cpp \
DwarfExpression.cpp \
DwarfFile.cpp \
DwarfStringPool.cpp \
DwarfUnit.cpp \
EHStreamer.cpp \
ErlangGCPrinter.cpp \
OcamlGCPrinter.cpp \
PseudoProbePrinter.cpp \
WasmException.cpp \
WinCFGuard.cpp \
WinException.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|