773eb5e8e1aa1664a3060dcdfede1635977572c2
[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 LIBRARYNAME = libCompilerDriver
16 LLVMLIBS = LLVMSupport.a LLVMSystem.a
17 LOADABLE_MODULE := 1
18 REQUIRES_EH := 1
19
20 include $(LEVEL)/Makefile.common
21
22 FullLibName = $(LIBRARYNAME)$(SHLIBEXT)
23
24 all-local:: $(ToolDir)/$(FullLibName)
25
26 # Copy the library to the bin dir so that llvmc can find it.
27 $(ToolDir)/$(FullLibName): $(LibDir)/$(FullLibName) $(ToolDir)/.dir
28         $(Echo) Copying $(BuildMode) Shared Library $(FullLibName) to $@
29         -$(Verb) $(CP) $< $@
30
31 clean-local::
32         $(Echo) Removing $(BuildMode) Shared Library $(FullLibName) \
33         from $(ToolDir)
34         -$(Verb) $(RM) -f $(ToolDir)/$(FullLibName)