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