mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
d3f7233495
llvm-svn: 17286
20 lines
713 B
Makefile
20 lines
713 B
Makefile
##===- tools/opt/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 = opt
|
|
|
|
USEDLIBS = LLVMBCReader LLVMBCWriter LLVMInstrumentation LLVMProfilePaths \
|
|
LLVMScalarOpts LLVMipo LLVMipa LLVMDataStructure LLVMTransforms \
|
|
LLVMTarget.a LLVMAnalysis LLVMTransformUtils LLVMCore LLVMSupport.a \
|
|
LLVMSystem.a
|
|
|
|
TOOLLINKOPTS = $(PLATFORMLIBDL)
|
|
|
|
include $(LEVEL)/Makefile.common
|