aboutsummaryrefslogtreecommitdiff
path: root/source/Plugins/Makefile
blob: 931f459a26b77a4b67358c84a2fb40d13d6dad99 (plain) (blame)
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
##===- source/Plugins/Makefile -----------------------------*- Makefile -*-===##
#
#                     The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
# 
##===----------------------------------------------------------------------===##

LLDB_LEVEL := ../..

include $(LLDB_LEVEL)/../../Makefile.config


PARALLEL_DIRS := ABI/MacOSX-arm ABI/MacOSX-arm64 ABI/MacOSX-i386 ABI/SysV-i386 ABI/SysV-x86_64 \
	ABI/SysV-arm ABI/SysV-arm64 ABI/SysV-hexagon ABI/SysV-ppc ABI/SysV-ppc64 \
	ABI/SysV-mips ABI/SysV-mips64 Disassembler/llvm \
	ObjectContainer/BSD-Archive ObjectFile/ELF ObjectFile/PECOFF \
	ObjectContainer/Universal-Mach-O ObjectFile/Mach-O \
	ObjectFile/JIT SymbolFile/DWARF SymbolFile/Symtab Process/Utility \
	DynamicLoader/Static Platform Process/elf-core Process/gdb-remote \
	Instruction/ARM Instruction/ARM64 Instruction/MIPS Instruction/MIPS64 \
	UnwindAssembly/InstEmulation UnwindAssembly/x86 \
	LanguageRuntime/CPlusPlus/ItaniumABI \
	LanguageRuntime/ObjC/AppleObjCRuntime \
	LanguageRuntime/Go/ \
	LanguageRuntime/RenderScript/RenderScriptRuntime \
	Language/CPlusPlus \
	Language/Go \
	Language/ObjC \
	Language/ObjCPlusPlus \
	DynamicLoader/POSIX-DYLD \
	DynamicLoader/Hexagon-DYLD \
	DynamicLoader/MacOSX-DYLD \
	DynamicLoader/Windows-DYLD \
	JITLoader/GDB \
	ExpressionParser/Clang \
	ExpressionParser/Go \
	OperatingSystem/Go \
	OperatingSystem/Python \
	SystemRuntime/MacOSX \
	SymbolVendor/ELF \
	MemoryHistory/asan \
	InstrumentationRuntime/AddressSanitizer \
	ScriptInterpreter/Python ScriptInterpreter/None

ifeq ($(HOST_OS),Darwin)
PARALLEL_DIRS += Process/MacOSX-Kernel
PARALLEL_DIRS += DynamicLoader/Darwin-Kernel
PARALLEL_DIRS += SymbolVendor/MacOSX
#PARALLEL_DIRS += Process/MacOSX-User
PARALLEL_DIRS += Process/mach-core
endif

ifeq ($(HOST_OS),Linux)
PARALLEL_DIRS += Process/Linux Process/POSIX
endif

ifneq (,$(filter $(HOST_OS), FreeBSD GNU/kFreeBSD))
PARALLEL_DIRS += Process/FreeBSD Process/POSIX
endif

ifeq ($(HOST_OS),NetBSD)
PARALLEL_DIRS += Process/POSIX
endif

include $(LLDB_LEVEL)/Makefile