2010-07-10 04:39:50 +08:00
|
|
|
##===- source/Plugins/Makefile -----------------------------*- Makefile -*-===##
|
2015-03-04 09:29:18 +08:00
|
|
|
#
|
2010-07-10 04:39:50 +08:00
|
|
|
# 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
|
|
|
|
|
|
|
|
|
2015-06-26 01:50:15 +08:00
|
|
|
PARALLEL_DIRS := ABI/MacOSX-arm ABI/MacOSX-arm64 ABI/MacOSX-i386 ABI/SysV-i386 ABI/SysV-x86_64 \
|
2015-04-29 19:52:35 +08:00
|
|
|
ABI/SysV-arm ABI/SysV-arm64 ABI/SysV-hexagon ABI/SysV-ppc ABI/SysV-ppc64 \
|
2015-06-28 01:31:28 +08:00
|
|
|
ABI/SysV-mips ABI/SysV-mips64 Disassembler/llvm \
|
2011-10-12 00:42:21 +08:00
|
|
|
ObjectContainer/BSD-Archive ObjectFile/ELF ObjectFile/PECOFF \
|
2015-03-02 23:14:50 +08:00
|
|
|
ObjectContainer/Universal-Mach-O ObjectFile/Mach-O \
|
2014-03-25 07:30:43 +08:00
|
|
|
ObjectFile/JIT SymbolFile/DWARF SymbolFile/Symtab Process/Utility \
|
2015-09-11 08:31:33 +08:00
|
|
|
DynamicLoader/Static Platform Process/elf-core Process/gdb-remote \
|
2015-05-15 14:53:30 +08:00
|
|
|
Instruction/ARM Instruction/ARM64 Instruction/MIPS Instruction/MIPS64 \
|
2011-05-20 07:44:09 +08:00
|
|
|
UnwindAssembly/InstEmulation UnwindAssembly/x86 \
|
|
|
|
LanguageRuntime/CPlusPlus/ItaniumABI \
|
2012-04-06 01:43:02 +08:00
|
|
|
LanguageRuntime/ObjC/AppleObjCRuntime \
|
2015-10-08 19:17:01 +08:00
|
|
|
LanguageRuntime/Go/ \
|
2015-04-10 00:49:25 +08:00
|
|
|
LanguageRuntime/RenderScript/RenderScriptRuntime \
|
2015-09-06 04:01:56 +08:00
|
|
|
Language/CPlusPlus \
|
|
|
|
Language/ObjC \
|
|
|
|
Language/ObjCPlusPlus \
|
2012-08-24 05:17:11 +08:00
|
|
|
DynamicLoader/POSIX-DYLD \
|
2014-07-22 01:19:12 +08:00
|
|
|
DynamicLoader/Hexagon-DYLD \
|
2015-03-04 09:05:52 +08:00
|
|
|
DynamicLoader/MacOSX-DYLD \
|
2015-07-10 01:09:09 +08:00
|
|
|
DynamicLoader/Windows-DYLD \
|
2015-09-11 18:37:17 +08:00
|
|
|
JITLoader/GDB \
|
2015-09-06 04:01:56 +08:00
|
|
|
ExpressionParser/Clang \
|
2015-09-17 05:20:44 +08:00
|
|
|
OperatingSystem/Go \
|
2013-09-19 00:33:12 +08:00
|
|
|
OperatingSystem/Python \
|
2015-03-02 23:14:50 +08:00
|
|
|
SystemRuntime/MacOSX \
|
2014-09-04 09:03:18 +08:00
|
|
|
SymbolVendor/ELF \
|
2014-10-11 08:38:55 +08:00
|
|
|
MemoryHistory/asan \
|
2015-08-05 20:46:53 +08:00
|
|
|
InstrumentationRuntime/AddressSanitizer \
|
|
|
|
ScriptInterpreter/Python ScriptInterpreter/None
|
2013-08-23 20:44:05 +08:00
|
|
|
|
2010-07-10 04:39:50 +08:00
|
|
|
ifeq ($(HOST_OS),Darwin)
|
2014-10-14 14:26:33 +08:00
|
|
|
PARALLEL_DIRS += Process/MacOSX-Kernel
|
2015-03-04 09:05:52 +08:00
|
|
|
PARALLEL_DIRS += DynamicLoader/Darwin-Kernel
|
2014-10-14 14:26:33 +08:00
|
|
|
PARALLEL_DIRS += SymbolVendor/MacOSX
|
|
|
|
#PARALLEL_DIRS += Process/MacOSX-User
|
|
|
|
PARALLEL_DIRS += Process/mach-core
|
2010-07-24 10:19:04 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(HOST_OS),Linux)
|
2014-10-14 14:26:33 +08:00
|
|
|
PARALLEL_DIRS += Process/Linux Process/POSIX
|
2014-03-13 00:04:29 +08:00
|
|
|
endif
|
|
|
|
|
2013-07-01 16:21:36 +08:00
|
|
|
ifneq (,$(filter $(HOST_OS), FreeBSD GNU/kFreeBSD))
|
2014-10-14 14:26:33 +08:00
|
|
|
PARALLEL_DIRS += Process/FreeBSD Process/POSIX
|
2010-07-10 04:39:50 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
include $(LLDB_LEVEL)/Makefile
|