2004-07-16 07:12:46 +00:00
|
|
|
#===- tools/llc/Makefile -----------------------------------*- Makefile -*-===##
|
2003-10-20 22:29:16 +00:00
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
2007-12-29 20:07:17 +00:00
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
2003-10-20 22:29:16 +00:00
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
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
|
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
|
2006-09-04 05:59:09 +00:00
|
|
|
# early so we can set up LINK_COMPONENTS before including Makefile.rules
|
2005-04-22 17:20:11 +00:00
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
|
2007-05-06 09:32:02 +00:00
|
|
|
LINK_COMPONENTS := $(TARGETS_TO_BUILD) bitreader
|
2004-10-27 23:18:45 +00:00
|
|
|
|
2005-04-22 17:20:11 +00:00
|
|
|
include $(LLVM_SRC_ROOT)/Makefile.rules
|
2001-07-21 12:42:29 +00:00
|
|
|
|