2008-11-25 21:38:12 +00:00
|
|
|
##===- tools/llvmc/driver/Makefile -------------------------*- Makefile -*-===##
|
2008-10-03 09:09:34 +00:00
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open
|
|
|
|
# Source License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
|
|
|
LEVEL = ../../..
|
|
|
|
|
2009-03-02 09:01:14 +00:00
|
|
|
TOOLNAME = $(LLVMC_BASED_DRIVER_NAME)
|
2009-03-03 10:03:53 +00:00
|
|
|
LLVMLIBS = CompilerDriver
|
2009-03-02 09:01:14 +00:00
|
|
|
|
|
|
|
ifneq ($(LLVMC_BUILTIN_PLUGINS),)
|
|
|
|
USEDLIBS += $(patsubst %,plugin_llvmc_%,$(LLVMC_BUILTIN_PLUGINS))
|
2008-10-03 09:09:34 +00:00
|
|
|
endif
|
|
|
|
|
2009-03-02 09:01:14 +00:00
|
|
|
LINK_COMPONENTS = support system
|
|
|
|
REQUIRES_EH := 1
|
|
|
|
|
2008-10-03 09:09:34 +00:00
|
|
|
include $(LEVEL)/Makefile.common
|