blob: 6b7f407b6d2324a4f431c5208fda5267b792d222 [file] [log] [blame]
Kovarththanan Rajaratnamacf84442010-02-27 07:05:56 +00001##===- 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
Zhongxing Xudc3240c2009-07-16 01:00:25 +000010LEVEL = ../../../..
11
12TOOLNAME = clang-wpa
13CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include
Daniel Dunbar8165ced2009-08-20 18:45:52 +000014NO_INSTALL = 1
Zhongxing Xudc3240c2009-07-16 01:00:25 +000015
16# No plugins, optimize startup time.
17TOOL_NO_EXPORTS = 1
18
Kovarththanan Rajaratnamacf84442010-02-27 07:05:56 +000019# Include this here so we can get the configuration of the targets that have
20# been configured for construction. We have to do this early so we can set up
21# LINK_COMPONENTS before including Makefile.rules
Zhongxing Xudc3240c2009-07-16 01:00:25 +000022include $(LEVEL)/Makefile.config
23
Daniel Dunbar25a9c372009-12-03 00:00:22 +000024LINK_COMPONENTS := bitreader mc core
25USEDLIBS = clangIndex.a clangFrontend.a clangDriver.a clangSema.a \
26 clangAnalysis.a clangAST.a clangParse.a clangLex.a clangBasic.a
Zhongxing Xudc3240c2009-07-16 01:00:25 +000027
28include $(LLVM_SRC_ROOT)/Makefile.rules