2009-11-15 08:27:43 +08:00
|
|
|
##===- examples/PrintFunctionNames/Makefile ----------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
2010-06-09 04:34:18 +08:00
|
|
|
CLANG_LEVEL := ../..
|
2009-11-15 08:27:43 +08:00
|
|
|
LIBRARYNAME = PrintFunctionNames
|
|
|
|
|
|
|
|
LINK_LIBS_IN_SHARED = 1
|
|
|
|
SHARED_LIBRARY = 1
|
|
|
|
|
2009-12-03 08:00:22 +08:00
|
|
|
USEDLIBS = clangIndex.a clangFrontend.a clangDriver.a clangSema.a \
|
|
|
|
clangAnalysis.a clangAST.a clangParse.a clangLex.a clangBasic.a
|
2009-11-15 08:27:43 +08:00
|
|
|
|
2010-06-09 04:34:18 +08:00
|
|
|
include $(CLANG_LEVEL)/Makefile
|