blob: 881b7cfa337a9479756ed2e40e56a2e1dcd9b0af [file] [log] [blame]
Daniel Dunbar9a693872009-11-15 00:27:43 +00001##===- examples/PrintFunctionNames/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
10LEVEL = ../../../..
11LIBRARYNAME = PrintFunctionNames
12
13CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include
14CXXFLAGS = -fno-rtti
15
16# Include this here so we can get the configuration of the targets that have
17# been configured for construction. We have to do this early so we can set up
18# LINK_COMPONENTS before including Makefile.rules
19include $(LEVEL)/Makefile.config
20
21LINK_LIBS_IN_SHARED = 1
22SHARED_LIBRARY = 1
23
24LINK_COMPONENTS := MC support
25USEDLIBS = clangFrontend.a clangIndex.a clangSema.a clangAnalysis.a clangAST.a clangParse.a clangLex.a clangBasic.a
26
27include $(LEVEL)/Makefile.common