Daniel Dunbar | 9a69387 | 2009-11-15 00:27:43 +0000 | [diff] [blame] | 1 | ##===- 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 | |
| 10 | LEVEL = ../../../.. |
| 11 | LIBRARYNAME = PrintFunctionNames |
| 12 | |
| 13 | CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include |
| 14 | CXXFLAGS = -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 |
| 19 | include $(LEVEL)/Makefile.config |
| 20 | |
| 21 | LINK_LIBS_IN_SHARED = 1 |
| 22 | SHARED_LIBRARY = 1 |
| 23 | |
| 24 | LINK_COMPONENTS := MC support |
| 25 | USEDLIBS = clangFrontend.a clangIndex.a clangSema.a clangAnalysis.a clangAST.a clangParse.a clangLex.a clangBasic.a |
| 26 | |
| 27 | include $(LEVEL)/Makefile.common |