2010-07-10 04:39:50 +08:00
|
|
|
##===- 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
|
|
|
|
|
|
|
|
|
2014-03-30 02:54:20 +08:00
|
|
|
DIRS := ABI/MacOSX-arm ABI/MacOSX-arm64 ABI/MacOSX-i386 ABI/SysV-x86_64 \
|
|
|
|
Disassembler/llvm \
|
2011-10-12 00:42:21 +08:00
|
|
|
ObjectContainer/BSD-Archive ObjectFile/ELF ObjectFile/PECOFF \
|
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 \
|
|
|
|
Instruction/ARM Instruction/ARM64 \
|
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 \
|
2012-08-24 05:17:11 +08:00
|
|
|
DynamicLoader/POSIX-DYLD \
|
2013-09-19 00:33:12 +08:00
|
|
|
OperatingSystem/Python \
|
|
|
|
SymbolVendor/ELF
|
2013-08-23 20:44:05 +08:00
|
|
|
|
2010-07-10 04:39:50 +08:00
|
|
|
ifeq ($(HOST_OS),Darwin)
|
2011-11-01 06:51:11 +08:00
|
|
|
DIRS += Process/MacOSX-Kernel
|
|
|
|
DIRS += DynamicLoader/MacOSX-DYLD DynamicLoader/Darwin-Kernel
|
|
|
|
DIRS += ObjectContainer/Universal-Mach-O ObjectFile/Mach-O
|
|
|
|
DIRS += SymbolVendor/MacOSX
|
2011-05-20 07:44:09 +08:00
|
|
|
#DIRS += Process/MacOSX-User
|
2012-02-25 02:02:59 +08:00
|
|
|
DIRS += Process/mach-core
|
2014-01-18 16:05:32 +08:00
|
|
|
DIRS += SystemRuntime/MacOSX
|
2014-06-25 06:22:43 +08:00
|
|
|
DIRS += Process/elf-core
|
|
|
|
DIRS += JITLoader/GDB
|
2010-07-24 10:19:04 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(HOST_OS),Linux)
|
2013-05-13 18:18:51 +08:00
|
|
|
DIRS += DynamicLoader/MacOSX-DYLD
|
2012-04-06 01:43:02 +08:00
|
|
|
DIRS += Process/Linux Process/POSIX
|
2013-07-18 00:06:12 +08:00
|
|
|
DIRS += Process/elf-core
|
2014-03-05 18:12:43 +08:00
|
|
|
DIRS += JITLoader/GDB
|
2012-01-06 03:17:38 +08:00
|
|
|
endif
|
|
|
|
|
2014-03-13 00:04:29 +08:00
|
|
|
ifeq ($(HOST_OS),MingW)
|
|
|
|
DIRS += Process/elf-core
|
|
|
|
DIRS += JITLoader/GDB
|
|
|
|
endif
|
|
|
|
|
2013-07-01 16:21:36 +08:00
|
|
|
ifneq (,$(filter $(HOST_OS), FreeBSD GNU/kFreeBSD))
|
2012-04-06 01:43:02 +08:00
|
|
|
DIRS += Process/FreeBSD Process/POSIX
|
2013-07-18 00:06:12 +08:00
|
|
|
DIRS += Process/elf-core
|
2014-03-05 21:57:24 +08:00
|
|
|
DIRS += JITLoader/GDB
|
2010-07-10 04:39:50 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
include $(LLDB_LEVEL)/Makefile
|