2003-10-20 22:29:16 +00:00
|
|
|
##===- tools/llc/Makefile ------------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# 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
|
2003-08-13 02:28:20 +00:00
|
|
|
USEDLIBS = sparc \
|
2003-06-18 21:14:23 +00:00
|
|
|
x86 \
|
2003-08-15 04:56:09 +00:00
|
|
|
selectiondag \
|
2002-10-28 00:54:59 +00:00
|
|
|
regalloc \
|
|
|
|
sched \
|
|
|
|
select \
|
|
|
|
codegen \
|
|
|
|
target.a \
|
|
|
|
livevar \
|
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 \
|
|
|
|
support
|
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
|
|
|
|