2009-03-02 09:01:14 +00:00
|
|
|
##===- lib/CompilerDriver/Makefile -------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open
|
|
|
|
# Source License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
|
|
|
LEVEL = ../..
|
|
|
|
|
|
|
|
# We don't want this library to appear in `llvm-config --libs` output, so its
|
|
|
|
# name doesn't start with "LLVM".
|
|
|
|
|
2009-06-29 03:09:15 +00:00
|
|
|
LIBRARYNAME = libCompilerDriver
|
|
|
|
LLVMLIBS = LLVMSupport.a LLVMSystem.a
|
|
|
|
LOADABLE_MODULE := 1
|
2009-03-02 09:01:14 +00:00
|
|
|
REQUIRES_EH := 1
|
|
|
|
|
|
|
|
include $(LEVEL)/Makefile.common
|
2009-06-29 03:09:15 +00:00
|
|
|
|
|
|
|
FullLibName = $(LIBRARYNAME)$(SHLIBEXT)
|
|
|
|
|
2009-06-29 22:59:36 +00:00
|
|
|
all-local:: $(ToolDir)/$(FullLibName)
|
|
|
|
|
2009-06-29 03:09:15 +00:00
|
|
|
# Copy the library to the bin dir so that llvmc can find it.
|
2009-06-29 22:59:36 +00:00
|
|
|
$(ToolDir)/$(FullLibName): $(LibDir)/$(FullLibName) $(ToolDir)/.dir
|
|
|
|
$(Echo) Copying $(BuildMode) Shared Library $(FullLibName) to $@
|
|
|
|
-$(Verb) $(CP) $< $@
|
2009-06-29 03:09:15 +00:00
|
|
|
|
|
|
|
clean-local::
|
|
|
|
$(Echo) Removing $(BuildMode) Shared Library $(FullLibName) \
|
|
|
|
from $(ToolDir)
|
|
|
|
-$(Verb) $(RM) -f $(ToolDir)/$(FullLibName)
|