2004-07-16 15:12:46 +08:00
|
|
|
#===- tools/llc/Makefile -----------------------------------*- Makefile -*-===##
|
2003-10-21 06:29:16 +08:00
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
2007-12-30 04:07:17 +08:00
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
2003-10-21 06:29:16 +08:00
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2004-07-16 15:12:46 +08:00
|
|
|
|
2001-07-21 20:42:29 +08:00
|
|
|
LEVEL = ../..
|
2001-09-08 06:59:25 +08:00
|
|
|
TOOLNAME = llc
|
2005-04-23 01:20:11 +08:00
|
|
|
|
|
|
|
# Include this here so we can get the configuration of the targets
|
|
|
|
# that have been configured for construction. We have to do this
|
2006-09-04 13:59:09 +08:00
|
|
|
# early so we can set up LINK_COMPONENTS before including Makefile.rules
|
2005-04-23 01:20:11 +08:00
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
|
2007-05-06 17:32:02 +08:00
|
|
|
LINK_COMPONENTS := $(TARGETS_TO_BUILD) bitreader
|
2004-10-28 07:18:45 +08:00
|
|
|
|
2005-04-23 01:20:11 +08:00
|
|
|
include $(LLVM_SRC_ROOT)/Makefile.rules
|
2001-07-21 20:42:29 +08:00
|
|
|
|