xref: /freebsd/lib/clang/libllvmminimal/Makefile (revision c130a785e4f6dbf222ac1e702837a2e3de89e691)
1986e05bcSDimitry Andric# $FreeBSD$
2986e05bcSDimitry Andric
3986e05bcSDimitry Andric.include "../llvm.pre.mk"
4986e05bcSDimitry Andric
5986e05bcSDimitry AndricLIB=		llvmminimal
6986e05bcSDimitry AndricINTERNALLIB=
7986e05bcSDimitry Andric
8986e05bcSDimitry AndricSRCDIR=		lib
9986e05bcSDimitry AndricSRCS+=		Support/APInt.cpp
10*c130a785SDimitry Andric.if ${MACHINE_ARCH:Mpowerpc*} != ""
11*c130a785SDimitry AndricSRCS+=		Support/Atomic.cpp
12*c130a785SDimitry Andric.endif
13986e05bcSDimitry AndricSRCS+=		Support/CommandLine.cpp
14986e05bcSDimitry AndricSRCS+=		Support/ConvertUTF.c
15986e05bcSDimitry AndricSRCS+=		Support/ConvertUTFWrapper.cpp
16986e05bcSDimitry AndricSRCS+=		Support/Debug.cpp
17986e05bcSDimitry AndricSRCS+=		Support/Errno.cpp
18986e05bcSDimitry AndricSRCS+=		Support/ErrorHandling.cpp
19986e05bcSDimitry AndricSRCS+=		Support/FoldingSet.cpp
20986e05bcSDimitry AndricSRCS+=		Support/FormattedStream.cpp
21986e05bcSDimitry AndricSRCS+=		Support/Hashing.cpp
22986e05bcSDimitry AndricSRCS+=		Support/Host.cpp
23986e05bcSDimitry AndricSRCS+=		Support/IntEqClasses.cpp
24986e05bcSDimitry AndricSRCS+=		Support/Locale.cpp
25986e05bcSDimitry AndricSRCS+=		Support/ManagedStatic.cpp
26986e05bcSDimitry AndricSRCS+=		Support/MemoryBuffer.cpp
27986e05bcSDimitry AndricSRCS+=		Support/Mutex.cpp
28986e05bcSDimitry AndricSRCS+=		Support/Path.cpp
29986e05bcSDimitry AndricSRCS+=		Support/PrettyStackTrace.cpp
30986e05bcSDimitry AndricSRCS+=		Support/Process.cpp
31986e05bcSDimitry AndricSRCS+=		Support/Program.cpp
32986e05bcSDimitry AndricSRCS+=		Support/Regex.cpp
33986e05bcSDimitry AndricSRCS+=		Support/Signals.cpp
34986e05bcSDimitry AndricSRCS+=		Support/SmallPtrSet.cpp
35986e05bcSDimitry AndricSRCS+=		Support/SmallVector.cpp
36986e05bcSDimitry AndricSRCS+=		Support/SourceMgr.cpp
37986e05bcSDimitry AndricSRCS+=		Support/StringExtras.cpp
38986e05bcSDimitry AndricSRCS+=		Support/StringMap.cpp
39986e05bcSDimitry AndricSRCS+=		Support/StringRef.cpp
40986e05bcSDimitry AndricSRCS+=		Support/StringSaver.cpp
41986e05bcSDimitry AndricSRCS+=		Support/TargetParser.cpp
42986e05bcSDimitry AndricSRCS+=		Support/Threading.cpp
43986e05bcSDimitry AndricSRCS+=		Support/TimeValue.cpp
44986e05bcSDimitry AndricSRCS+=		Support/ToolOutputFile.cpp
45986e05bcSDimitry AndricSRCS+=		Support/Triple.cpp
46986e05bcSDimitry AndricSRCS+=		Support/Twine.cpp
47986e05bcSDimitry AndricSRCS+=		Support/Unicode.cpp
48986e05bcSDimitry AndricSRCS+=		Support/circular_raw_ostream.cpp
49986e05bcSDimitry AndricSRCS+=		Support/raw_ostream.cpp
50986e05bcSDimitry AndricSRCS+=		Support/regcomp.c
51986e05bcSDimitry AndricSRCS+=		Support/regerror.c
52986e05bcSDimitry AndricSRCS+=		Support/regexec.c
53986e05bcSDimitry AndricSRCS+=		Support/regfree.c
54986e05bcSDimitry AndricSRCS+=		Support/regstrlcpy.c
55986e05bcSDimitry AndricSRCS+=		TableGen/Error.cpp
56986e05bcSDimitry AndricSRCS+=		TableGen/Main.cpp
57986e05bcSDimitry AndricSRCS+=		TableGen/Record.cpp
58986e05bcSDimitry AndricSRCS+=		TableGen/SetTheory.cpp
59986e05bcSDimitry AndricSRCS+=		TableGen/StringMatcher.cpp
60986e05bcSDimitry AndricSRCS+=		TableGen/TGLexer.cpp
61986e05bcSDimitry AndricSRCS+=		TableGen/TGParser.cpp
62986e05bcSDimitry AndricSRCS+=		TableGen/TableGenBackend.cpp
63986e05bcSDimitry Andric
64986e05bcSDimitry Andric.include "../llvm.build.mk"
65986e05bcSDimitry Andric.include <bsd.lib.mk>
66