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