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