2004-07-16 09:12:46 +02:00
|
|
|
#===- tools/llc/Makefile -----------------------------------*- Makefile -*-===##
|
2003-10-21 00:29:16 +02:00
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file was developed by the LLVM research group and is distributed under
|
|
|
|
# the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2004-07-16 09:12:46 +02:00
|
|
|
|
2001-07-21 14:42:29 +02:00
|
|
|
LEVEL = ../..
|
2001-09-08 00:59:25 +02:00
|
|
|
TOOLNAME = llc
|
2004-08-05 20:32:57 +02:00
|
|
|
USEDLIBS = \
|
|
|
|
cwriter \
|
|
|
|
powerpc \
|
|
|
|
sparcv9 \
|
|
|
|
x86 \
|
|
|
|
skeleton \
|
|
|
|
selectiondag \
|
|
|
|
sparcv9regalloc \
|
2004-10-08 20:14:56 +02:00
|
|
|
sparcv9sched \
|
2004-08-05 20:32:57 +02:00
|
|
|
codegen \
|
|
|
|
target.a \
|
|
|
|
sparcv9livevar \
|
|
|
|
ipa.a \
|
|
|
|
transforms.a \
|
|
|
|
scalaropts.a \
|
|
|
|
analysis.a \
|
|
|
|
transformutils.a \
|
|
|
|
bcreader \
|
|
|
|
bcwriter \
|
|
|
|
vmcore \
|
2004-08-29 21:29:38 +02:00
|
|
|
support.a \
|
|
|
|
LLVMsystem.a
|
2003-06-17 22:09:18 +02:00
|
|
|
TOOLLINKOPTS = $(PLATFORMLIBDL)
|
2002-09-20 02:43:20 +02:00
|
|
|
|
2001-09-08 00:59:25 +02:00
|
|
|
include $(LEVEL)/Makefile.common
|
2001-07-21 14:42:29 +02:00
|
|
|
|