forked from OSchip/llvm-project
20 lines
758 B
Makefile
20 lines
758 B
Makefile
##===- unittests/Frontend/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 = ../..
|
|
TESTNAME = Frontend
|
|
LINK_COMPONENTS := support mc
|
|
USEDLIBS = clangFrontendTool.a clangFrontend.a clangDriver.a \
|
|
clangSerialization.a clangCodeGen.a clangParse.a clangSema.a \
|
|
clangStaticAnalyzerCheckers.a clangStaticAnalyzerCore.a \
|
|
clangAnalysis.a clangIndex.a clangRewrite.a \
|
|
clangAST.a clangLex.a clangBasic.a
|
|
|
|
include $(CLANG_LEVEL)/unittests/Makefile
|