blob: b9c45b8700a10bcc80f94ac355e99cc95696b8ca (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
# $OpenBSD: Makefile,v 1.4 2017/07/09 15:28:35 espie Exp $
LIB= LLVMSupport
NOPIC=
NOPROFILE=
CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/Support
.include <bsd.own.mk>
SRCS= APFloat.cpp \
APInt.cpp \
APSInt.cpp \
ARMBuildAttrs.cpp \
ARMWinEH.cpp \
Allocator.cpp \
BlockFrequency.cpp \
BranchProbability.cpp \
circular_raw_ostream.cpp \
COM.cpp \
Chrono.cpp \
CommandLine.cpp \
Compression.cpp \
ConvertUTF.cpp \
ConvertUTFWrapper.cpp \
CrashRecoveryContext.cpp \
DataExtractor.cpp \
Debug.cpp \
DeltaAlgorithm.cpp \
DAGDeltaAlgorithm.cpp \
Dwarf.cpp \
Error.cpp \
ErrorHandling.cpp \
FileUtilities.cpp \
FileOutputBuffer.cpp \
FoldingSet.cpp \
FormattedStream.cpp \
GlobPattern.cpp \
GraphWriter.cpp \
Hashing.cpp \
IntEqClasses.cpp \
IntervalMap.cpp \
JamCRC.cpp \
LEB128.cpp \
LineIterator.cpp \
Locale.cpp \
LockFileManager.cpp \
ManagedStatic.cpp \
MathExtras.cpp \
MemoryBuffer.cpp \
MD5.cpp \
NativeFormatting.cpp \
Options.cpp \
PluginLoader.cpp \
PrettyStackTrace.cpp \
RandomNumberGenerator.cpp \
Regex.cpp \
ScaledNumber.cpp \
ScopedPrinter.cpp \
SHA1.cpp \
SmallPtrSet.cpp \
SmallVector.cpp \
SourceMgr.cpp \
SpecialCaseList.cpp \
Statistic.cpp \
StringExtras.cpp \
StringMap.cpp \
StringPool.cpp \
StringSaver.cpp \
StringRef.cpp \
SystemUtils.cpp \
TarWriter.cpp \
TargetParser.cpp \
ThreadPool.cpp \
Timer.cpp \
ToolOutputFile.cpp \
TrigramIndex.cpp \
Triple.cpp \
Twine.cpp \
Unicode.cpp \
YAMLParser.cpp \
YAMLTraits.cpp \
raw_os_ostream.cpp \
raw_ostream.cpp \
regcomp.c \
regerror.c \
regexec.c \
regfree.c \
regstrlcpy.c \
Atomic.cpp \
DynamicLibrary.cpp \
Errno.cpp \
Host.cpp \
Memory.cpp \
Mutex.cpp \
Path.cpp \
Process.cpp \
Program.cpp \
RWMutex.cpp \
SearchForAddressOfSpecialSymbol.cpp \
Signals.cpp \
TargetRegistry.cpp \
ThreadLocal.cpp \
Threading.cpp \
Valgrind.cpp \
Watchdog.cpp \
xxhash.cpp
.PATH: ${.CURDIR}/../../../llvm/lib/Support
install:
@# Nothing here so far ...
.include <bsd.lib.mk>
|