• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
10CLANG_LEVEL := ../..
11
12TOOLNAME = clang-wpa
13NO_INSTALL = 1
14
15# No plugins, optimize startup time.
16TOOL_NO_EXPORTS = 1
17
18LINK_COMPONENTS := asmparser bitreader mc core
19USEDLIBS = clangStaticAnalyzerFrontend.a \
20           clangStaticAnalyzerCheckers.a \
21           clangStaticAnalyzerCore.a \
22           clangIndex.a clangFrontend.a clangDriver.a \
23	   clangParse.a clangSema.a clangAnalysis.a clangSerialization.a \
24           clangAST.a  clangLex.a clangBasic.a
25
26include $(CLANG_LEVEL)/Makefile
27