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
|
2006-07-07 00:46:19 +00:00
|
|
|
REQUIRES_EH := 1
|
2005-04-22 17:20:11 +00:00
|
|
|
|
|
|
|
# Include this here so we can get the configuration of the targets
|
|
|
|
# that have been configured for construction. We have to do this
|
|
|
|
# early so we can set up USEDLIBS properly before includeing Makefile.rules
|
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
|
2006-08-03 16:59:17 +00:00
|
|
|
USEDLIBS := $(addprefix LLVM,$(TARGETS_TO_BUILD)) \
|
2006-09-04 04:04:41 +00:00
|
|
|
LLVMTarget.a \
|
2006-07-20 17:27:58 +00:00
|
|
|
LLVMCodeGen.a \
|
2006-07-21 19:44:55 +00:00
|
|
|
LLVMSelectionDAG.a \
|
2004-10-27 23:18:45 +00:00
|
|
|
LLVMipa.a \
|
|
|
|
LLVMTransforms.a \
|
2005-10-24 01:13:21 +00:00
|
|
|
LLVMScalarOpts.a \
|
2005-10-27 15:54:34 +00:00
|
|
|
LLVMTransformUtils.a \
|
2005-10-25 17:10:30 +00:00
|
|
|
LLVMAnalysis.a \
|
2006-06-01 01:30:27 +00:00
|
|
|
LLVMBCReader.a \
|
|
|
|
LLVMBCWriter.a \
|
|
|
|
LLVMCore.a \
|
2004-10-27 23:18:45 +00:00
|
|
|
LLVMSupport.a \
|
2006-06-01 01:30:27 +00:00
|
|
|
LLVMbzip2.a \
|
2004-10-27 23:18:45 +00:00
|
|
|
LLVMSystem.a
|
|
|
|
|
2005-04-22 17:20:11 +00:00
|
|
|
include $(LLVM_SRC_ROOT)/Makefile.rules
|
2001-07-21 12:42:29 +00:00
|
|
|
|