blob: 391746d4d4fd13b298e0eeb666e005f82c7569f8 [file] [log] [blame]
Ted Kremenekd2fa5662009-08-26 22:36:44 +00001##===- tools/CIndex/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 = CIndex
12
Dan Gohmane42e9872010-04-16 04:45:02 +000013EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/CIndex.exports
14
Jeffrey Yasskin33524062010-03-12 22:55:16 +000015CPP.Flags += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include
Ted Kremenekd2fa5662009-08-26 22:36:44 +000016
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
Daniel Dunbar467f0302009-12-02 21:47:55 +000025LINK_COMPONENTS := bitreader mc core
Douglas Gregora030b7c2010-01-22 20:35:53 +000026USEDLIBS = clangFrontend.a clangDriver.a clangSema.a \
Daniel Dunbar467f0302009-12-02 21:47:55 +000027 clangAnalysis.a clangAST.a clangParse.a clangLex.a clangBasic.a
Ted Kremenekd2fa5662009-08-26 22:36:44 +000028
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 \
Ted Kremenekd2fa5662009-08-26 22:36:44 +000045 -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,"@executable_path/../lib/lib$(LIBRARYNAME)$(SHLIBEXT)"
54 endif
55endif