blob: 7e2a245421b93759852cbb7ffed81eb86430ef7d (
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
44
|
# $OpenBSD: Makefile,v 1.3 2017/07/09 15:28:36 espie Exp $
LIB= lldELF
NOPROFILE=
CPPFLAGS+= -I${LLVM_SRCS}/tools/lld/include
.include <bsd.own.mk>
SRCS= Driver.cpp \
DriverUtils.cpp \
EhFrame.cpp \
Error.cpp \
GdbIndex.cpp \
ICF.cpp \
InputFiles.cpp \
InputSection.cpp \
LinkerScript.cpp \
LTO.cpp \
MarkLive.cpp \
Mips.cpp \
OutputSections.cpp \
Relocations.cpp \
ScriptParser.cpp \
Strings.cpp \
SymbolTable.cpp \
Symbols.cpp \
SyntheticSections.cpp \
Target.cpp \
Thunks.cpp \
Writer.cpp
.PATH: ${.CURDIR}/../../../llvm/tools/lld/ELF
Driver.o: Options.inc
Options.inc: Options.td
${.OBJDIR}/../llvm-tblgen/llvm-tblgen -gen-opt-parser-defs \
-I ${LLVM_SRCS}/include \
-o ${.TARGET} ${.ALLSRC}
install:
@# Nothing here so far ...
.include <bsd.lib.mk>
|