[Makefiles] Align library names with CMake build

Summary: This aligns the library names used by the Makefile build to be the same as those create by the CMake build to make switching between the two easier. The only major difficulty was lldbHost which was one library in the CMake system and several in the Makefile system. Most of the other changes are trivial renames.

Reviewers: labath

Subscribers: emaste, tberghammer, lldb-commits

Differential Revision: http://reviews.llvm.org/D11154

llvm-svn: 242196
This commit is contained in:
Keno Fischer 2015-07-14 20:25:19 +00:00
parent 5be45129a4
commit 2069de9813
23 changed files with 88 additions and 186 deletions

View File

@ -1,10 +1,10 @@
##===- source/Makefile -------------------------------------*- Makefile -*-===## ##===- source/Makefile -------------------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # The LLVM Compiler Infrastructure
# #
# This file is distributed under the University of Illinois Open Source # This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL := ../../.. LEVEL := ../../..
@ -28,9 +28,9 @@ USEDLIBS = lldbAPI.a \
lldbCore.a \ lldbCore.a \
lldbDataFormatters.a \ lldbDataFormatters.a \
lldbExpression.a \ lldbExpression.a \
lldbHostCommon.a \ lldbInitialization.a \
lldbInitialize.a \ lldbHost.a \
lldbInitAndLog.a \ lldbBase.a \
lldbInterpreter.a \ lldbInterpreter.a \
lldbPluginABIMacOSX_arm.a \ lldbPluginABIMacOSX_arm.a \
lldbPluginABIMacOSX_arm64.a \ lldbPluginABIMacOSX_arm64.a \
@ -46,33 +46,33 @@ USEDLIBS = lldbAPI.a \
lldbPluginABISysV_hexagon.a \ lldbPluginABISysV_hexagon.a \
lldbPluginDisassemblerLLVM.a \ lldbPluginDisassemblerLLVM.a \
lldbPluginDynamicLoaderStatic.a \ lldbPluginDynamicLoaderStatic.a \
lldbPluginDynamicLoaderPOSIX.a \ lldbPluginDynamicLoaderPosixDYLD.a \
lldbPluginDynamicLoaderHexagon.a \ lldbPluginDynamicLoaderHexagon.a \
lldbPluginDynamicLoaderMacOSX.a \ lldbPluginDynamicLoaderMacOSXDYLD.a \
lldbPluginDynamicLoaderWindowsDYLD.a \ lldbPluginDynamicLoaderWindowsDYLD.a \
lldbPluginEmulateInstructionARM.a \ lldbPluginInstructionARM.a \
lldbPluginEmulateInstructionARM64.a \ lldbPluginInstructionARM64.a \
lldbPluginEmulateInstructionMIPS.a \ lldbPluginInstructionMIPS.a \
lldbPluginEmulateInstructionMIPS64.a \ lldbPluginInstructionMIPS64.a \
lldbPluginInstrumentationRuntimeAddressSanitizer.a \ lldbPluginInstrumentationRuntimeAddressSanitizer.a \
lldbPluginLanguageRuntimeCPlusPlusItaniumABI.a \ lldbPluginCXXItaniumABI.a \
lldbPluginLanguageRuntimeObjCAppleObjCRuntime.a \ lldbPluginAppleObjCRuntime.a \
lldbPluginLanguageRuntimeRenderScriptRuntime.a \ lldbPluginRenderScriptRuntime.a \
lldbPluginMemoryHistoryASan.a \ lldbPluginMemoryHistoryASan.a \
lldbPluginObjectContainerBSDArchive.a \ lldbPluginObjectContainerBSDArchive.a \
lldbPluginObjectContainerUniversalMachO.a \ lldbPluginObjectContainerMachOArchive.a \
lldbPluginObjectFileELF.a \ lldbPluginObjectFileELF.a \
lldbPluginObjectFileJIT.a \ lldbPluginObjectFileJIT.a \
lldbPluginSymbolVendorELF.a \ lldbPluginSymbolVendorELF.a \
lldbPluginObjectFilePECOFF.a \ lldbPluginObjectFilePECOFF.a \
lldbPluginOperatingSystemPython.a \ lldbPluginOSPython.a \
lldbPluginPlatformGDBServer.a \ lldbPluginPlatformGDB.a \
lldbPluginProcessGDBRemote.a \ lldbPluginProcessGDBRemote.a \
lldbPluginSymbolFileDWARF.a \ lldbPluginSymbolFileDWARF.a \
lldbPluginSymbolFileSymtab.a \ lldbPluginSymbolFileSymtab.a \
lldbPluginSystemRuntimeMacOSX.a \ lldbPluginSystemRuntimeMacOSX.a \
lldbPluginUnwindAssemblyInstEmulation.a \ lldbPluginUnwindAssemblyInstEmulation.a \
lldbPluginUnwindAssemblyx86.a \ lldbPluginUnwindAssemblyX86.a \
lldbPluginUtility.a \ lldbPluginUtility.a \
lldbSymbol.a \ lldbSymbol.a \
lldbTarget.a \ lldbTarget.a \
@ -113,9 +113,7 @@ LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader bitwriter codegen \
linker option linker option
ifeq ($(HOST_OS),Darwin) ifeq ($(HOST_OS),Darwin)
USEDLIBS += lldbHostMacOSX.a \ USEDLIBS += lldbPluginDynamicLoaderDarwinKernel.a \
lldbHostPosix.a \
lldbPluginDynamicLoaderDarwinKernel.a \
lldbPluginObjectFileMachO.a \ lldbPluginObjectFileMachO.a \
lldbPluginSymbolVendorMacOSX.a \ lldbPluginSymbolVendorMacOSX.a \
lldbPluginProcessDarwin.a \ lldbPluginProcessDarwin.a \
@ -125,24 +123,19 @@ ifeq ($(HOST_OS),Darwin)
endif endif
ifeq ($(HOST_OS),Linux) ifeq ($(HOST_OS),Linux)
USEDLIBS += lldbHostLinux.a \ USEDLIBS += lldbPluginProcessLinux.a \
lldbHostPosix.a \
lldbPluginProcessLinux.a \
lldbPluginProcessPOSIX.a \ lldbPluginProcessPOSIX.a \
lldbPluginProcessElfCore.a \ lldbPluginProcessElfCore.a \
lldbPluginJITLoaderGDB.a lldbPluginJITLoaderGDB.a
endif endif
ifeq ($(HOST_OS),MingW) ifeq ($(HOST_OS),MingW)
USEDLIBS += lldbHostWindows.a \ USEDLIBS += lldbPluginProcessElfCore.a \
lldbPluginProcessElfCore.a \
lldbPluginJITLoaderGDB.a lldbPluginJITLoaderGDB.a
endif endif
ifneq (,$(filter $(HOST_OS), FreeBSD GNU/kFreeBSD)) ifneq (,$(filter $(HOST_OS), FreeBSD GNU/kFreeBSD))
USEDLIBS += lldbHostFreeBSD.a \ USEDLIBS += lldbPluginProcessPOSIX.a \
lldbHostPosix.a \
lldbPluginProcessPOSIX.a \
lldbPluginProcessFreeBSD.a \ lldbPluginProcessFreeBSD.a \
lldbPluginProcessElfCore.a \ lldbPluginProcessElfCore.a \
lldbPluginJITLoaderGDB.a lldbPluginJITLoaderGDB.a
@ -165,7 +158,7 @@ ifeq ($(HOST_OS),Darwin)
-Wl,$(LLDB_SUBMIT_VERSION).$(LLDB_SUBMIT_SUBVERSION) \ -Wl,$(LLDB_SUBMIT_VERSION).$(LLDB_SUBMIT_SUBVERSION) \
-Wl,-compatibility_version -Wl,1 -Wl,-compatibility_version -Wl,1
endif endif
# extra options to override libtool defaults # extra options to override libtool defaults
LLVMLibsOptions += -F/System/Library/Frameworks -F/System/Library/PrivateFrameworks LLVMLibsOptions += -F/System/Library/Frameworks -F/System/Library/PrivateFrameworks
LLVMLibsOptions += -framework Foundation -framework CoreFoundation LLVMLibsOptions += -framework Foundation -framework CoreFoundation
LLVMLibsOptions += -framework CoreServices -framework Carbon -framework Security LLVMLibsOptions += -framework CoreServices -framework Carbon -framework Security

View File

@ -1,41 +1,50 @@
##===- source/Host/Makefile --------------------------------*- Makefile -*-===## ##===- source/Host/Makefile --------------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # The LLVM Compiler Infrastructure
# #
# This file is distributed under the University of Illinois Open Source # This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LLDB_LEVEL := ../.. LLDB_LEVEL := ../..
LEVEL := $(LLDB_LEVEL)/../..
include $(LLDB_LEVEL)/../../Makefile.config include $(LEVEL)/Makefile.config
DIRS := common define DIR_SOURCES
SOURCES += $$(addprefix $(1)/,$$(notdir $$(wildcard $$(PROJ_SRC_DIR)/$(1)/*.cpp \
$$(PROJ_SRC_DIR)/*.cc $$(PROJ_SRC_DIR)/$(1)/*.c)))
endef
$(eval $(call DIR_SOURCES,common))
ifeq ($(HOST_OS),Darwin) ifeq ($(HOST_OS),Darwin)
DIRS += posix $(eval $(call DIR_SOURCES,posix))
DIRS += macosx $(eval $(call DIR_SOURCES,macosx))
endif endif
ifeq ($(HOST_OS),Linux) ifeq ($(HOST_OS),Linux)
DIRS += posix $(eval $(call DIR_SOURCES,posix))
DIRS += linux $(eval $(call DIR_SOURCES,linux))
endif endif
ifneq (,$(filter $(HOST_OS), FreeBSD GNU/kFreeBSD)) ifneq (,$(filter $(HOST_OS), FreeBSD GNU/kFreeBSD))
DIRS += posix $(eval $(call DIR_SOURCES,posix))
DIRS += freebsd $(eval $(call DIR_SOURCES,freebsd))
endif endif
ifeq ($(HOST_OS),MingW) ifeq ($(HOST_OS),MingW)
DIRS += windows $(eval $(call DIR_SOURCES,windows))
endif endif
ifeq ($(HOST_OS),Android) ifeq ($(HOST_OS),Android)
DIRS += posix $(eval $(call DIR_SOURCES,posix))
DIRS += linux $(eval $(call DIR_SOURCES,linux))
DIRS += android $(eval $(call DIR_SOURCES,android))
endif endif
LIBRARYNAME := lldbHost
BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile include $(LLDB_LEVEL)/Makefile

View File

@ -1,14 +0,0 @@
##===- source/Host/common/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 := ../../..
LIBRARYNAME := lldbHostCommon
BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile

View File

@ -1,16 +0,0 @@
##===- source/Host/freebsd/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 := ../../..
LIBRARYNAME := lldbHostFreeBSD
BUILD_ARCHIVE = 1
CPP.Flags += -I/usr/local/include
include $(LLDB_LEVEL)/Makefile

View File

@ -1,14 +0,0 @@
##===- source/Host/linux/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 := ../../..
LIBRARYNAME := lldbHostLinux
BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile

View File

@ -1,26 +0,0 @@
##===- source/Host/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 := ../../..
LIBRARYNAME := lldbHostMacOSX
BUILD_ARCHIVE = 1
CFCPP_SOURCES = \
$(addprefix cfcpp/,$(notdir $(wildcard $(PROJ_SRC_DIR)/cfcpp/*.cpp)))
SOURCES = $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp $(PROJ_SRC_DIR)/*.mm)) \
$(CFCPP_SOURCES)
include $(LLDB_LEVEL)/Makefile
CFCPP_BaseNameSources := $(sort $(basename $(CFCPP_SOURCES)))
CFCPP_OBJECTS := $(CFCPP_BaseNameSources:%=$(ObjDir)/%.o)
# Make sure the cfcpp output directory exists
$(CFCPP_OBJECTS): $(ObjDir)/cfcpp/.dir

View File

@ -1,14 +0,0 @@
##===- source/Host/posix/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 := ../../..
LIBRARYNAME := lldbHostPosix
BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile

View File

@ -1,16 +0,0 @@
##===- source/Host/windows/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 := ../../..
LIBRARYNAME := lldbHostWindows
BUILD_ARCHIVE = 1
SOURCES = $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp )) $(PROJ_SRC_DIR)/../posix/ConnectionFileDescriptorPosix.cpp
include $(LLDB_LEVEL)/Makefile

View File

@ -8,7 +8,7 @@
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LLDB_LEVEL := ../.. LLDB_LEVEL := ../..
LIBRARYNAME := lldbInitialize LIBRARYNAME := lldbInitialization
BUILD_ARCHIVE = 1 BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile include $(LLDB_LEVEL)/Makefile

View File

@ -1,21 +1,21 @@
##===- source/Makefile -------------------------------------*- Makefile -*-===## ##===- source/Makefile -------------------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # The LLVM Compiler Infrastructure
# #
# This file is distributed under the University of Illinois Open Source # This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LLDB_LEVEL := .. LLDB_LEVEL := ..
PARALLEL_DIRS := API Initialization Breakpoint Commands Core DataFormatters Expression Host Interpreter Plugins Symbol Target Utility PARALLEL_DIRS := API Initialization Breakpoint Commands Core DataFormatters Expression Host Interpreter Plugins Symbol Target Utility
LIBRARYNAME := lldbInitAndLog LIBRARYNAME := lldbBase
BUILD_ARCHIVE = 1 BUILD_ARCHIVE = 1
# Although LLVM makefiles provide $(HOST_OS), we cannot use that here because it is defined by including the $(LLDB_LEVEL)/Makefile # Although LLVM makefiles provide $(HOST_OS), we cannot use that here because it is defined by including the $(LLDB_LEVEL)/Makefile
# below. Instead, we use uname -s to detect the HOST_OS and generate LLDB_vers.c only on Mac. On Linux, the version number is # below. Instead, we use uname -s to detect the HOST_OS and generate LLDB_vers.c only on Mac. On Linux, the version number is
# calculated in the same way as Clang's version. # calculated in the same way as Clang's version.
ifeq (Darwin,$(shell uname -s)) ifeq (Darwin,$(shell uname -s))
BUILT_SOURCES = LLDB_vers.c BUILT_SOURCES = LLDB_vers.c
endif endif

View File

@ -1,14 +1,14 @@
##===- source/Plugins/Disassembler/llvm/Makefile -------------*- Makefile -*-===## ##===- source/Plugins/Disassembler/llvm/Makefile -------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # The LLVM Compiler Infrastructure
# #
# This file is distributed under the University of Illinois Open Source # This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LLDB_LEVEL := ../../../.. LLDB_LEVEL := ../../../..
LIBRARYNAME := lldbPluginDynamicLoaderMacOSX LIBRARYNAME := lldbPluginDynamicLoaderMacOSXDYLD
BUILD_ARCHIVE = 1 BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile include $(LLDB_LEVEL)/Makefile

View File

@ -1,14 +1,14 @@
##===- source/Plugins/DynamicLoader/POSIX-DYLD/Makefile ----*- Makefile -*-===## ##===- source/Plugins/DynamicLoader/POSIX-DYLD/Makefile ----*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # The LLVM Compiler Infrastructure
# #
# This file is distributed under the University of Illinois Open Source # This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LLDB_LEVEL := ../../../.. LLDB_LEVEL := ../../../..
LIBRARYNAME := lldbPluginDynamicLoaderPOSIX LIBRARYNAME := lldbPluginDynamicLoaderPosixDYLD
BUILD_ARCHIVE = 1 BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile include $(LLDB_LEVEL)/Makefile

View File

@ -1,14 +1,14 @@
##===- source/Plugins/Instruction/ARM/Makefile -------------*- Makefile -*-===## ##===- source/Plugins/Instruction/ARM/Makefile -------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # The LLVM Compiler Infrastructure
# #
# This file is distributed under the University of Illinois Open Source # This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LLDB_LEVEL := ../../../.. LLDB_LEVEL := ../../../..
LIBRARYNAME := lldbPluginEmulateInstructionARM LIBRARYNAME := lldbPluginInstructionARM
BUILD_ARCHIVE = 1 BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile include $(LLDB_LEVEL)/Makefile

View File

@ -1,14 +1,14 @@
##===- source/Plugins/Instruction/ARM/Makefile -------------*- Makefile -*-===## ##===- source/Plugins/Instruction/ARM/Makefile -------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # The LLVM Compiler Infrastructure
# #
# This file is distributed under the University of Illinois Open Source # This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LLDB_LEVEL := ../../../.. LLDB_LEVEL := ../../../..
LIBRARYNAME := lldbPluginEmulateInstructionARM64 LIBRARYNAME := lldbPluginInstructionARM64
BUILD_ARCHIVE = 1 BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile include $(LLDB_LEVEL)/Makefile

View File

@ -1,14 +1,14 @@
##===- source/Plugins/Instruction/MIPS/Makefile -------------*- Makefile -*-===## ##===- source/Plugins/Instruction/MIPS/Makefile -------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # The LLVM Compiler Infrastructure
# #
# This file is distributed under the University of Illinois Open Source # This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LLDB_LEVEL := ../../../.. LLDB_LEVEL := ../../../..
LIBRARYNAME := lldbPluginEmulateInstructionMIPS LIBRARYNAME := lldbPluginInstructionMIPS
BUILD_ARCHIVE = 1 BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile include $(LLDB_LEVEL)/Makefile

View File

@ -1,14 +1,14 @@
##===- source/Plugins/Instruction/MIPS64/Makefile -------------*- Makefile -*-===## ##===- source/Plugins/Instruction/MIPS64/Makefile -------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # The LLVM Compiler Infrastructure
# #
# This file is distributed under the University of Illinois Open Source # This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LLDB_LEVEL := ../../../.. LLDB_LEVEL := ../../../..
LIBRARYNAME := lldbPluginEmulateInstructionMIPS64 LIBRARYNAME := lldbPluginInstructionMIPS64
BUILD_ARCHIVE = 1 BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile include $(LLDB_LEVEL)/Makefile

View File

@ -1,14 +1,14 @@
##===- source/Plugins/LangRuntime/C++/ItaniumABI/Makefile --*- Makefile -*-===## ##===- source/Plugins/LangRuntime/C++/ItaniumABI/Makefile --*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # The LLVM Compiler Infrastructure
# #
# This file is distributed under the University of Illinois Open Source # This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LLDB_LEVEL := ../../../../.. LLDB_LEVEL := ../../../../..
LIBRARYNAME := lldbPluginLanguageRuntimeCPlusPlusItaniumABI LIBRARYNAME := lldbPluginCXXItaniumABI
BUILD_ARCHIVE = 1 BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile include $(LLDB_LEVEL)/Makefile

View File

@ -1,14 +1,14 @@
##===- source/Plugins/LangRuntime/ObjC/AppleRT/Makefile ----*- Makefile -*-===## ##===- source/Plugins/LangRuntime/ObjC/AppleRT/Makefile ----*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # The LLVM Compiler Infrastructure
# #
# This file is distributed under the University of Illinois Open Source # This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LLDB_LEVEL := ../../../../.. LLDB_LEVEL := ../../../../..
LIBRARYNAME := lldbPluginLanguageRuntimeObjCAppleObjCRuntime LIBRARYNAME := lldbPluginAppleObjCRuntime
BUILD_ARCHIVE = 1 BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile include $(LLDB_LEVEL)/Makefile

View File

@ -1,14 +1,14 @@
##===- Source/Plugins/LangRuntime/RenderScript/RenderScriptRuntime/Makefile ----*- Makefile -*-===## ##===- Source/Plugins/LangRuntime/RenderScript/RenderScriptRuntime/Makefile ----*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # The LLVM Compiler Infrastructure
# #
# This file is distributed under the University of Illinois Open Source # This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LLDB_LEVEL := ../../../../.. LLDB_LEVEL := ../../../../..
LIBRARYNAME := lldbPluginLanguageRuntimeRenderScriptRuntime LIBRARYNAME := lldbPluginRenderScriptRuntime
BUILD_ARCHIVE = 1 BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile include $(LLDB_LEVEL)/Makefile

View File

@ -1,14 +1,14 @@
##===- source/Plugins/ObjectContainer/Universal-Mach-O/Makefile -------------*- Makefile -*-===## ##===- source/Plugins/ObjectContainer/Universal-Mach-O/Makefile -------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # The LLVM Compiler Infrastructure
# #
# This file is distributed under the University of Illinois Open Source # This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LLDB_LEVEL := ../../../.. LLDB_LEVEL := ../../../..
LIBRARYNAME := lldbPluginObjectContainerUniversalMachO LIBRARYNAME := lldbPluginObjectContainerMachOArchive
BUILD_ARCHIVE = 1 BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile include $(LLDB_LEVEL)/Makefile

View File

@ -1,14 +1,14 @@
##==- source/Plugins/OperatingSystem/Python/Makefile --------*- Makefile -*-==## ##==- source/Plugins/OperatingSystem/Python/Makefile --------*- Makefile -*-==##
# #
# The LLVM Compiler Infrastructure # The LLVM Compiler Infrastructure
# #
# This file is distributed under the University of Illinois Open Source # This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LLDB_LEVEL := ../../../.. LLDB_LEVEL := ../../../..
LIBRARYNAME := lldbPluginOperatingSystemPython LIBRARYNAME := lldbPluginOSPython
BUILD_ARCHIVE = 1 BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile include $(LLDB_LEVEL)/Makefile

View File

@ -8,7 +8,7 @@
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LLDB_LEVEL := ../../../.. LLDB_LEVEL := ../../../..
LIBRARYNAME := lldbPluginPlatformGDBServer LIBRARYNAME := lldbPluginPlatformGDB
BUILD_ARCHIVE = 1 BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile include $(LLDB_LEVEL)/Makefile

View File

@ -1,14 +1,14 @@
##==-- source/Plugins/UnwindAssembly/x86/Makefile ----------*- Makefile -*-===## ##==-- source/Plugins/UnwindAssembly/x86/Makefile ----------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # The LLVM Compiler Infrastructure
# #
# This file is distributed under the University of Illinois Open Source # This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LLDB_LEVEL := ../../../.. LLDB_LEVEL := ../../../..
LIBRARYNAME := lldbPluginUnwindAssemblyx86 LIBRARYNAME := lldbPluginUnwindAssemblyX86
BUILD_ARCHIVE = 1 BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile include $(LLDB_LEVEL)/Makefile