2003-10-20 22:29:16 +00:00
|
|
|
##===- tools/bugpoint/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.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2002-11-20 22:28:10 +00:00
|
|
|
LEVEL = ../..
|
|
|
|
|
|
|
|
TOOLNAME = bugpoint
|
|
|
|
|
2005-10-24 02:31:05 +00:00
|
|
|
OPTLIBS = LLVMTransforms.a LLVMInstrumentation.a
|
2005-10-24 01:05:53 +00:00
|
|
|
ANALIBS = LLVMDataStructure LLVMipa.a LLVMTarget.a
|
2002-11-20 22:28:10 +00:00
|
|
|
|
2005-10-24 01:05:53 +00:00
|
|
|
USEDLIBS = LLVMipo.a LLVMScalarOpts.a $(OPTLIBS) $(ANALIBS) LLVMAnalysis.a \
|
2005-10-27 15:54:34 +00:00
|
|
|
LLVMTransformUtils.a \
|
2006-06-01 01:30:27 +00:00
|
|
|
LLVMAsmParser.a LLVMLinker.a LLVMBCReader.a LLVMBCWriter.a \
|
|
|
|
LLVMCore.a LLVMSupport.a LLVMbzip2.a LLVMSystem.a
|
2006-07-07 00:46:19 +00:00
|
|
|
REQUIRES_EH := 1
|
2002-11-20 22:28:10 +00:00
|
|
|
|
|
|
|
include $(LEVEL)/Makefile.common
|