1 ##===- tools/edis/Makefile -----------------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 ##===----------------------------------------------------------------------===##
11 LIBRARYNAME
= EnhancedDisassembly
12 LINK_LIBS_IN_SHARED
= 1
15 EXPORTED_SYMBOL_FILE
= $(PROJ_SRC_DIR
)/EnhancedDisassembly.exports
17 # Include this here so we can get the configuration of the targets
18 # that have been configured for construction. We have to do this
19 # early so we can set up LINK_COMPONENTS before including Makefile.rules
20 include $(LEVEL
)/Makefile.config
22 LINK_COMPONENTS
:= mcdisassembler
24 # If the X86 target is enabled, link in the asmprinter and disassembler.
25 ifneq ($(filter $(TARGETS_TO_BUILD
), X86
),)
26 LINK_COMPONENTS
+= x86asmprinter x86disassembler
29 # If the ARM target is enabled, link in the asmprinter and disassembler.
30 ifneq ($(filter $(TARGETS_TO_BUILD
), ARM
),)
31 LINK_COMPONENTS
+= armasmprinter armdisassembler
34 include $(LEVEL
)/Makefile.common
36 ifeq ($(HOST_OS
),Darwin
)
37 # extra options to override libtool defaults
38 LLVMLibsOptions
:= $(LLVMLibsOptions
) \
42 LLVMLibsOptions
:= $(LLVMLibsOptions
) -Wl
,-current_version
-Wl
,$(EDIS_VERSION
) \
43 -Wl
,-compatibility_version
-Wl
,1
46 # Mac OS X 10.4 and earlier tools do not allow a second -install_name on command line
47 DARWIN_VERS
:= $(shell echo
$(TARGET_TRIPLE
) | sed
's/.*darwin\([0-9]*\).*/\1/')
48 ifneq ($(DARWIN_VERS
),8)
49 LLVMLibsOptions
:= $(LLVMLibsOptions
) \
51 -Wl
,"@rpath/lib$(LIBRARYNAME)$(SHLIBEXT)"