2004-07-16 07:12:46 +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.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2004-07-16 07:12:46 +00:00
|
|
|
|
2001-07-21 12:42:29 +00:00
|
|
|
LEVEL = ../..
|
2001-09-07 22:59:25 +00:00
|
|
|
TOOLNAME = llc
|
2004-08-05 18:32:57 +00:00
|
|
|
USEDLIBS = \
|
2004-11-18 18:38:01 +00:00
|
|
|
LLVMSparcV9ModuloSched \
|
2004-10-27 23:18:45 +00:00
|
|
|
LLVMCBackend \
|
|
|
|
LLVMPowerPC \
|
2004-12-10 05:04:13 +00:00
|
|
|
LLVMSparcV8 \
|
2004-10-27 23:18:45 +00:00
|
|
|
LLVMSparcV9 \
|
|
|
|
LLVMX86 \
|
2005-02-15 21:14:09 +00:00
|
|
|
LLVMAlpha \
|
2005-03-17 18:39:06 +00:00
|
|
|
LLVMIA64 \
|
2004-10-27 23:18:45 +00:00
|
|
|
LLVMSkeleton \
|
|
|
|
LLVMSparcV9RegAlloc \
|
|
|
|
LLVMSparcV9InstrSched \
|
2005-01-07 07:51:25 +00:00
|
|
|
LLVMSelectionDAG \
|
2004-10-27 23:18:45 +00:00
|
|
|
LLVMCodeGen \
|
|
|
|
LLVMTarget.a \
|
|
|
|
LLVMSparcV9LiveVar \
|
|
|
|
LLVMipa.a \
|
|
|
|
LLVMTransforms.a \
|
2004-12-16 23:07:13 +00:00
|
|
|
LLVMScalarOpts \
|
2004-10-27 23:18:45 +00:00
|
|
|
LLVMAnalysis.a \
|
|
|
|
LLVMTransformUtils.a \
|
|
|
|
LLVMBCReader \
|
|
|
|
LLVMBCWriter \
|
|
|
|
LLVMCore \
|
|
|
|
LLVMSupport.a \
|
2004-11-25 20:22:06 +00:00
|
|
|
LLVMbzip2 \
|
2004-10-27 23:18:45 +00:00
|
|
|
LLVMSystem.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
|
|
|
|