A basic PIC16 toolchain driver.
[oota-llvm.git] / tools / llvmc / example / mcc16 / driver / Makefile
1 ##===- llvmc/example/mcc16/driver/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 = $(LLVMC_BASE_LEVEL)/..
11
12 TOOLNAME = $(LLVMC_BASED_DRIVER_NAME)
13 LLVMLIBS = CompilerDriver
14
15 ifneq ($(LLVMC_BUILTIN_PLUGINS),)
16 USEDLIBS += $(patsubst %,plugin_llvmc_%,$(LLVMC_BUILTIN_PLUGINS))
17 endif
18
19 LINK_COMPONENTS = support system
20 REQUIRES_EH := 1
21
22 include $(LEVEL)/Makefile.common