blob: ae836698a7a751e8385916f6c833d0c56d2ff77d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:07 joerg Exp $
LIB= LLVMLTO
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/LTO
SRCS+= Caching.cpp \
LTOBackend.cpp \
LTOCodeGenerator.cpp \
LTO.cpp \
LTOModule.cpp \
SummaryBasedOptimizations.cpp \
ThinLTOCodeGenerator.cpp \
UpdateCompilerUsed.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|