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 = \
|
2004-11-18 19:38:01 +01:00
|
|
|
LLVMSparcV9ModuloSched \
|
2004-10-28 01:18:45 +02:00
|
|
|
LLVMCBackend \
|
|
|
|
LLVMPowerPC \
|
2004-12-10 06:04:13 +01:00
|
|
|
LLVMSparcV8 \
|
2004-10-28 01:18:45 +02:00
|
|
|
LLVMSparcV9 \
|
|
|
|
LLVMX86 \
|
2005-02-15 22:14:09 +01:00
|
|
|
LLVMAlpha \
|
2005-03-17 19:39:06 +01:00
|
|
|
LLVMIA64 \
|
2004-10-28 01:18:45 +02:00
|
|
|
LLVMSkeleton \
|
|
|
|
LLVMSparcV9RegAlloc \
|
|
|
|
LLVMSparcV9InstrSched \
|
2005-01-07 08:51:25 +01:00
|
|
|
LLVMSelectionDAG \
|
2004-10-28 01:18:45 +02:00
|
|
|
LLVMCodeGen \
|
|
|
|
LLVMTarget.a \
|
|
|
|
LLVMSparcV9LiveVar \
|
|
|
|
LLVMipa.a \
|
|
|
|
LLVMTransforms.a \
|
2004-12-17 00:07:13 +01:00
|
|
|
LLVMScalarOpts \
|
2004-10-28 01:18:45 +02:00
|
|
|
LLVMAnalysis.a \
|
|
|
|
LLVMTransformUtils.a \
|
|
|
|
LLVMBCReader \
|
|
|
|
LLVMBCWriter \
|
|
|
|
LLVMCore \
|
|
|
|
LLVMSupport.a \
|
2004-11-25 21:22:06 +01:00
|
|
|
LLVMbzip2 \
|
2004-10-28 01:18:45 +02:00
|
|
|
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
|
|
|
|