2004-03-11 19:16:33 +01: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.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2001-07-21 14:42:29 +02:00
|
|
|
LEVEL = ../..
|
2001-09-08 00:59:25 +02:00
|
|
|
TOOLNAME = llc
|
2004-02-14 00:19:09 +01:00
|
|
|
USEDLIBS = cwriter \
|
2004-02-25 20:08:12 +01:00
|
|
|
sparcv9 \
|
2003-06-18 23:14:23 +02:00
|
|
|
x86 \
|
2004-02-02 20:05:52 +01:00
|
|
|
powerpc \
|
2004-02-08 06:49:29 +01:00
|
|
|
selectiondag \
|
2004-02-25 20:08:12 +01:00
|
|
|
sparcv9regalloc \
|
2002-10-28 01:54:59 +01:00
|
|
|
sched \
|
2004-02-25 20:08:12 +01:00
|
|
|
sparcv9select \
|
2002-10-28 01:54:59 +01:00
|
|
|
codegen \
|
|
|
|
target.a \
|
2004-02-25 20:08:12 +01:00
|
|
|
sparcv9livevar \
|
2004-02-14 00:19:09 +01:00
|
|
|
ipa.a \
|
2003-01-19 22:55:43 +01:00
|
|
|
transforms.a \
|
2003-06-18 23:14:23 +02:00
|
|
|
scalaropts.a \
|
2003-01-19 22:55:43 +01:00
|
|
|
analysis.a \
|
|
|
|
transformutils.a \
|
2002-10-28 01:54:59 +01:00
|
|
|
bcreader \
|
2003-06-18 23:14:23 +02:00
|
|
|
bcwriter \
|
2002-10-28 01:54:59 +01:00
|
|
|
vmcore \
|
2003-12-16 00:10:25 +01:00
|
|
|
support.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
|
|
|
|