Added LLVM copyright to Makefiles.
[oota-llvm.git] / tools / llc / Makefile
1 ##===- tools/llc/Makefile ------------------------------*- Makefile -*-===##
2
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file was developed by the LLVM research group and is distributed under
6 # the University of Illinois Open Source License. See LICENSE.TXT for details.
7
8 ##===----------------------------------------------------------------------===##
9 LEVEL = ../..
10 TOOLNAME = llc
11 USEDLIBS = sparc \
12            x86 \
13            selectiondag \
14            regalloc \
15            sched \
16            select \
17            codegen \
18            target.a \
19            livevar \
20            transforms.a \
21            scalaropts.a \
22            analysis.a \
23            transformutils.a \
24            bcreader \
25            bcwriter \
26            vmcore \
27            support
28 TOOLLINKOPTS = $(PLATFORMLIBDL)
29
30 include $(LEVEL)/Makefile.common
31