2013-10-31 20:23:32 +08:00
|
|
|
##===- extra/pp-trace/Makefile --------------------------*- Makefile -*---===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===---------------------------------------------------------------------===##
|
|
|
|
|
|
|
|
CLANG_LEVEL := ../../..
|
|
|
|
|
|
|
|
TOOLNAME = pp-trace
|
|
|
|
|
|
|
|
# No plugins, optimize startup time.
|
|
|
|
TOOL_NO_EXPORTS = 1
|
|
|
|
|
2015-02-25 10:46:37 +08:00
|
|
|
LINK_COMPONENTS := mcparser bitreader support mc option TransformUtils
|
|
|
|
USEDLIBS = clangFrontend.a clangSerialization.a clangDriver.a \
|
2013-10-31 20:23:32 +08:00
|
|
|
clangTooling.a clangParse.a clangSema.a clangAnalysis.a \
|
2015-02-21 08:29:43 +08:00
|
|
|
clangEdit.a clangAST.a clangLex.a clangBasic.a
|
2013-10-31 20:23:32 +08:00
|
|
|
|
|
|
|
include $(CLANG_LEVEL)/Makefile
|