66c6d11552fc74667a4881e5484c0becc3908ce5
[oota-llvm.git] / lib / CompilerDriver / Makefile
1 ##===- lib/CompilerDriver/Makefile -------------------------*- Makefile -*-===##
2 #
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file is distributed under the University of Illinois Open
6 # Source License. See LICENSE.TXT for details.
7 #
8 ##===----------------------------------------------------------------------===##
9
10 LEVEL = ../..
11
12 # We don't want this library to appear in `llvm-config --libs` output, so its
13 # name doesn't start with "LLVM".
14
15 ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
16   LIBRARYNAME = libCompilerDriver
17   LLVMLIBS = LLVMSupport.a LLVMSystem.a
18   LOADABLE_MODULE := 1
19 else
20   LIBRARYNAME = CompilerDriver
21   LINK_COMPONENTS = support system
22 endif
23
24 REQUIRES_EH := 1
25 REQUIRES_RTTI := 1
26
27 include $(LEVEL)/Makefile.common
28
29 ifeq ($(ENABLE_LLVMC_DYNAMIC_PLUGINS), 1)
30     CPP.Flags += -DENABLE_LLVMC_DYNAMIC_PLUGINS
31 endif
32
33 # Copy libCompilerDriver to the bin dir so that llvmc can find it.
34 ifeq ($(ENABLE_LLVMC_DYNAMIC),1)
35
36 FullLibName = $(LIBRARYNAME)$(SHLIBEXT)
37
38 all-local:: $(ToolDir)/$(FullLibName)
39
40 $(ToolDir)/$(FullLibName): $(LibDir)/$(FullLibName) $(ToolDir)/.dir
41         $(Echo) Copying $(BuildMode) Shared Library $(FullLibName) to $@
42         -$(Verb) $(CP) $< $@
43
44 clean-local::
45         $(Echo) Removing $(BuildMode) Shared Library $(FullLibName) \
46         from $(ToolDir)
47         -$(Verb) $(RM) -f $(ToolDir)/$(FullLibName)
48 endif