mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
686d0155d7
llvm-svn: 18995
41 lines
891 B
Makefile
41 lines
891 B
Makefile
#===- 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.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LEVEL = ../..
|
|
TOOLNAME = llc
|
|
USEDLIBS = \
|
|
LLVMSparcV9ModuloSched \
|
|
LLVMCBackend \
|
|
LLVMPowerPC \
|
|
LLVMSparcV8 \
|
|
LLVMSparcV9 \
|
|
LLVMX86 \
|
|
LLVMSkeleton \
|
|
LLVMSparcV9RegAlloc \
|
|
LLVMSparcV9InstrSched \
|
|
LLVMCodeGen \
|
|
LLVMTarget.a \
|
|
LLVMSparcV9LiveVar \
|
|
LLVMipa.a \
|
|
LLVMTransforms.a \
|
|
LLVMScalarOpts.a \
|
|
LLVMAnalysis.a \
|
|
LLVMTransformUtils.a \
|
|
LLVMBCReader \
|
|
LLVMBCWriter \
|
|
LLVMCore \
|
|
LLVMSupport.a \
|
|
LLVMbzip2 \
|
|
LLVMSystem.a
|
|
|
|
TOOLLINKOPTS = $(PLATFORMLIBDL)
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|