John Criswell | e2fab73 | 2003-10-20 22:29:16 +0000 | [diff] [blame] | 1 | ##===- tools/opt/Makefile ------------------------------*- Makefile -*-===## |
| 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
| 5 | # This file was developed by the LLVM research group and is distributed under |
| 6 | # the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | # |
| 8 | ##===----------------------------------------------------------------------===## |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 9 | LEVEL = ../.. |
Chris Lattner | c9744e7 | 2001-09-07 22:59:25 +0000 | [diff] [blame] | 10 | TOOLNAME = opt |
Anand Shukla | 63aaa11 | 2002-06-25 21:43:28 +0000 | [diff] [blame] | 11 | |
Reid Spencer | 6cb21d4 | 2004-10-27 23:18:45 +0000 | [diff] [blame] | 12 | USEDLIBS = LLVMBCReader LLVMBCWriter LLVMInstrumentation LLVMProfilePaths \ |
| 13 | LLVMScalarOpts LLVMipo LLVMipa LLVMDataStructure LLVMTransforms \ |
| 14 | LLVMTarget.a LLVMAnalysis LLVMTransformUtils LLVMCore LLVMSupport.a \ |
| 15 | LLVMSystem.a |
| 16 | |
Brian Gaeke | 5285270 | 2003-06-17 20:09:18 +0000 | [diff] [blame] | 17 | TOOLLINKOPTS = $(PLATFORMLIBDL) |
Vikram S. Adve | 2f0a51c | 2002-09-18 11:55:44 +0000 | [diff] [blame] | 18 | |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 19 | include $(LEVEL)/Makefile.common |