Zhongxing Xu | 579855f | 2010-08-25 01:15:20 +0000 | [diff] [blame] | 1 | ##===- examples/wpa/Makefile -------------------------------*- Makefile -*-===## |
| 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
| 5 | # This file is distributed under the University of Illinois Open Source |
| 6 | # License. See LICENSE.TXT for details. |
| 7 | # |
| 8 | ##===----------------------------------------------------------------------===## |
| 9 | |
| 10 | CLANG_LEVEL := ../.. |
| 11 | |
| 12 | TOOLNAME = clang-wpa |
| 13 | NO_INSTALL = 1 |
| 14 | |
| 15 | # No plugins, optimize startup time. |
| 16 | TOOL_NO_EXPORTS = 1 |
| 17 | |
| 18 | LINK_COMPONENTS := asmparser bitreader mc core |
| 19 | USEDLIBS = clangChecker.a clangIndex.a clangFrontend.a clangDriver.a \ |
| 20 | clangSema.a clangAnalysis.a clangSerialization.a \ |
| 21 | clangAST.a clangParse.a clangLex.a clangBasic.a |
| 22 | |
| 23 | include $(CLANG_LEVEL)/Makefile |