blob: 2261da34590899d038b9da489b3bedc3cd427235 (
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
|
# $OpenBSD: Makefile,v 1.1 2017/01/24 08:44:47 patrick Exp $
LIB= LLVMDebugInfoDWARF
NOPIC=
NOPROFILE=
CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/DebugInfo/DWARF
.include <bsd.own.mk>
SRCS= DWARFAbbreviationDeclaration.cpp \
DWARFAcceleratorTable.cpp \
DWARFCompileUnit.cpp \
DWARFContext.cpp \
DWARFDebugAbbrev.cpp \
DWARFDebugArangeSet.cpp \
DWARFDebugAranges.cpp \
DWARFDebugFrame.cpp \
DWARFDebugInfoEntry.cpp \
DWARFDebugLine.cpp \
DWARFDebugLoc.cpp \
DWARFDebugMacro.cpp \
DWARFDebugPubTable.cpp \
DWARFDebugRangeList.cpp \
DWARFDie.cpp \
DWARFFormValue.cpp \
DWARFGdbIndex.cpp \
DWARFTypeUnit.cpp \
DWARFUnitIndex.cpp \
DWARFUnit.cpp \
SyntaxHighlighting.cpp
.PATH: ${.CURDIR}/../../../llvm/lib/DebugInfo/DWARF
depend:
# Nothing here so far ...
install:
# Nothing here so far ...
.include <bsd.lib.mk>
|