Makefile revision f0229d884da7974f40f558e8cb0b11939017fe43
1##===- tools/libclang/Makefile -----------------------------*- Makefile -*-===##
2# 
3#                     The LLVM Compiler Infrastructure
4#
5# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
7# 
8##===----------------------------------------------------------------------===##
9
10LEVEL = ../../../..
11LIBRARYNAME = clang
12
13EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/libclang.exports
14
15CPP.Flags += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include
16
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
20include $(LEVEL)/Makefile.config
21
22LINK_LIBS_IN_SHARED = 1
23SHARED_LIBRARY = 1
24
25LINK_COMPONENTS := bitreader mc core
26USEDLIBS = clangFrontend.a clangDriver.a clangSema.a \
27	   clangAnalysis.a clangAST.a clangParse.a clangLex.a clangBasic.a
28
29include $(LEVEL)/Makefile.common
30
31##===----------------------------------------------------------------------===##
32# FIXME: This is copied from the 'lto' makefile.  Should we share this?
33##===----------------------------------------------------------------------===##
34
35ifeq ($(HOST_OS),Darwin)
36    # set dylib internal version number to llvmCore submission number
37    ifdef LLVM_SUBMIT_VERSION
38        LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version \
39                        -Wl,$(LLVM_SUBMIT_VERSION).$(LLVM_SUBMIT_SUBVERSION) \
40                        -Wl,-compatibility_version -Wl,1
41    endif
42    # extra options to override libtool defaults 
43    LLVMLibsOptions    := $(LLVMLibsOptions)  \
44                         -avoid-version \
45                         -Wl,-dead_strip \
46                         -Wl,-seg1addr -Wl,0xE0000000 
47
48    # Mac OS X 10.4 and earlier tools do not allow a second -install_name on command line
49    DARWIN_VERS := $(shell echo $(TARGET_TRIPLE) | sed 's/.*darwin\([0-9]*\).*/\1/')
50    ifneq ($(DARWIN_VERS),8)
51       LLVMLibsOptions    := $(LLVMLibsOptions)  \
52                            -no-undefined -Wl,-install_name \
53                            -Wl,"@rpath/lib$(LIBRARYNAME)$(SHLIBEXT)"
54    endif
55endif
56