blob: 4377d369bc195a4aabb8a4b54ea0236256085f8a (
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
|
##===- source/Plugins/Platform/MacOSX/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 := ../../../..
LEVEL := $(LLDB_LEVEL)/../..
include $(LEVEL)/Makefile.config
SOURCES += PlatformDarwin.cpp \
PlatformDarwinKernel.cpp \
PlatformMacOSX.cpp \
PlatformRemoteiOS.cpp \
PlatformRemoteAppleTV.cpp \
PlatformRemoteAppleWatch.cpp
ifeq ($(HOST_OS),Darwin)
SOURCES += PlatformAppleSimulator.cpp \
PlatformiOSSimulator.cpp \
PlatformiOSSimulatorCoreSimulatorSupport.mm \
PlatformAppleTVSimulator.cpp \
PlatformAppleWatchSimulator.cpp
endif
LIBRARYNAME := lldbPluginPlatformMacOSX
BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile
|