Zhanyong Wan | f0ed580 | 2011-02-09 07:42:47 +0000 | [diff] [blame] | 1 | ##===- unittests/Frontend/Makefile -------------------------*- Makefile -*-===## |
Jeffrey Yasskin | 7a17889 | 2011-02-03 04:51:52 +0000 | [diff] [blame] | 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 | CLANG_LEVEL = ../.. |
| 11 | TESTNAME = Frontend |
Chad Rosier | fa1d30d | 2012-08-08 16:27:29 +0000 | [diff] [blame] | 12 | include $(CLANG_LEVEL)/../../Makefile.config |
| 13 | LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser support mc |
Jeffrey Yasskin | 7a17889 | 2011-02-03 04:51:52 +0000 | [diff] [blame] | 14 | USEDLIBS = clangFrontendTool.a clangFrontend.a clangDriver.a \ |
| 15 | clangSerialization.a clangCodeGen.a clangParse.a clangSema.a \ |
| 16 | clangStaticAnalyzerCheckers.a clangStaticAnalyzerCore.a \ |
Ted Kremenek | 305c613 | 2012-09-01 05:09:24 +0000 | [diff] [blame] | 17 | clangARCMigrate.a clangRewriteCore.a \ |
| 18 | clangRewriteFrontend.a clangEdit.a \ |
Chandler Carruth | f95d412 | 2012-06-20 09:53:52 +0000 | [diff] [blame] | 19 | clangAnalysis.a clangAST.a clangLex.a clangBasic.a |
Jeffrey Yasskin | 7a17889 | 2011-02-03 04:51:52 +0000 | [diff] [blame] | 20 | |
| 21 | include $(CLANG_LEVEL)/unittests/Makefile |