mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
6cb21d443e
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17286 91177308-0d34-0410-b5e6-96231b3b80d8
39 lines
857 B
Makefile
39 lines
857 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 = \
|
|
LLVMCBackend \
|
|
LLVMPowerPC \
|
|
LLVMSparcV9 \
|
|
LLVMX86 \
|
|
LLVMSkeleton \
|
|
LLVMSelectionDAG \
|
|
LLVMSparcV9RegAlloc \
|
|
LLVMSparcV9InstrSched \
|
|
LLVMCodeGen \
|
|
LLVMTarget.a \
|
|
LLVMSparcV9LiveVar \
|
|
LLVMipa.a \
|
|
LLVMTransforms.a \
|
|
LLVMScalarOpts.a \
|
|
LLVMAnalysis.a \
|
|
LLVMTransformUtils.a \
|
|
LLVMBCReader \
|
|
LLVMBCWriter \
|
|
LLVMCore \
|
|
LLVMSupport.a \
|
|
LLVMSystem.a
|
|
|
|
TOOLLINKOPTS = $(PLATFORMLIBDL)
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|