summaryrefslogtreecommitdiff
path: root/tools/llc/Makefile.am
blob: 2513cad48251488b6aa3e8146843d9113bedf127 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#===-- tools/llc/Makefile.am -------------------------------*- Makefile -*--===#
#
#                     The LLVM Compiler Infrastructure
#
# This file was developed by Reid Spencer and is distributed under the 
# University of Illinois Open Source License. See LICENSE.TXT for details.
# 
#===------------------------------------------------------------------------===#

include $(top_srcdir)/Makefile.rules.am

bin_PROGRAMS = llc

llc_SOURCES = llc.cpp

llc_LDADD = \
  $(call GETOBJS,CWriter,PowerPC,SparcV9,X86,Skeleton,SelectionDAG) \
  $(call GETOBJS,SparcV9RegAlloc,SparcV9InstrSched,CodeGen) \
  $(call GETLIBS,Target) \
  $(call GETOBJS,SparcV9LiveVar) \
  $(call GETLIBS,IPA,Transforms,ScalarOpts,Analysis,TransformUtils) \
  $(call GETOBJS,BCReader,BCWriter,Core) \
  $(call GETLIBS,Support,System)