blob: 459727da3b6e7283f5ebcc24d3ef729a51c418aa (
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
45
46
47
|
# $OpenBSD: Makefile,v 1.5 2023/11/11 18:35:38 robert Exp $
LIB= clangBasicTargets
NOPIC=
NOPROFILE=
CPPFLAGS+= ${CLANG_INCLUDES}
CPPFLAGS+= -I${CLANG_SRCS}/lib/Basic
CPPFLAGS+= -I${CLANG_SRCS}/lib/Basic/Targets
.include <bsd.own.mk>
SRCS= AArch64.cpp \
AMDGPU.cpp \
ARC.cpp \
ARM.cpp \
AVR.cpp \
BPF.cpp \
CSKY.cpp \
DirectX.cpp \
Hexagon.cpp \
Lanai.cpp \
Le64.cpp \
LoongArch.cpp \
M68k.cpp \
MSP430.cpp \
Mips.cpp \
NVPTX.cpp \
OSTargets.cpp \
PNaCl.cpp \
PPC.cpp \
RISCV.cpp \
SPIR.cpp \
Sparc.cpp \
SystemZ.cpp \
TCE.cpp \
VE.cpp \
WebAssembly.cpp \
X86.cpp \
XCore.cpp
.PATH: ${.CURDIR}/../../../llvm/clang/lib/Basic/Targets
install:
@# Nothing here so far ...
.include <bsd.lib.mk>
|