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
|
|
|
|
|
|
|
|
|
2014-10-14 14:26:33 +08:00
|
|
|
PARALLEL_DIRS := ABI/MacOSX-arm ABI/MacOSX-arm64 ABI/MacOSX-i386 ABI/SysV-x86_64 \
|
2014-11-03 06:03:15 +08:00
|
|
|
ABI/SysV-hexagon ABI/SysV-ppc ABI/SysV-ppc64 \
|
2014-03-30 02:54:20 +08:00
|
|
|
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 \
|
2014-03-30 02:54:20 +08:00
|
|
|
DynamicLoader/Static Platform Process/gdb-remote \
|
2015-03-18 17:21:29 +08:00
|
|
|
Instruction/ARM Instruction/ARM64 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-04-10 00:49:25 +08:00
|
|
|
LanguageRuntime/RenderScript/RenderScriptRuntime \
|
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 \
|
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 \
|
|
|
|
InstrumentationRuntime/AddressSanitizer
|
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
|
|
|
|
PARALLEL_DIRS += Process/elf-core
|
|
|
|
PARALLEL_DIRS += JITLoader/GDB
|
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
|
|
|
|
PARALLEL_DIRS += Process/elf-core
|
|
|
|
PARALLEL_DIRS += JITLoader/GDB
|
2012-01-06 03:17:38 +08:00
|
|
|
endif
|
|
|
|
|
2014-03-13 00:04:29 +08:00
|
|
|
ifeq ($(HOST_OS),MingW)
|
2014-10-14 14:26:33 +08:00
|
|
|
PARALLEL_DIRS += Process/elf-core
|
|
|
|
PARALLEL_DIRS += JITLoader/GDB
|
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
|
|
|
|
PARALLEL_DIRS += Process/elf-core
|
|
|
|
PARALLEL_DIRS += JITLoader/GDB
|
2010-07-10 04:39:50 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
include $(LLDB_LEVEL)/Makefile
|