blob: 48490845ff5be1d477e57100098bcb96e4b14e81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $OpenBSD: Makefile,v 1.4 2017/10/04 20:57:09 patrick Exp $
LIB= LLVMLTO
NOPIC=
NOPROFILE=
CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/LTO
.include <bsd.own.mk>
SRCS= Caching.cpp \
LTO.cpp \
LTOBackend.cpp \
LTOCodeGenerator.cpp \
LTOModule.cpp \
UpdateCompilerUsed.cpp \
ThinLTOCodeGenerator.cpp
.PATH: ${.CURDIR}/../../../llvm/lib/LTO
install:
@# Nothing here so far ...
.include <bsd.lib.mk>
|