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