Jeffrey Yasskin | 7a17889 | 2011-02-03 04:51:52 +0000 | [diff] [blame] | 1 | ##===- unittests/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 | # If CLANG_LEVEL is not set, then we are the top-level Makefile. Otherwise, we |
| 11 | # are being included from a subdirectory makefile. |
| 12 | |
| 13 | ifndef CLANG_LEVEL |
| 14 | |
| 15 | IS_UNITTEST_LEVEL := 1 |
| 16 | CLANG_LEVEL := .. |
Manuel Klimek | 4da2166 | 2012-07-06 05:48:52 +0000 | [diff] [blame] | 17 | PARALLEL_DIRS = ASTMatchers Basic AST Frontend Lex Tooling |
Jeffrey Yasskin | 7a17889 | 2011-02-03 04:51:52 +0000 | [diff] [blame] | 18 | |
| 19 | endif # CLANG_LEVEL |
| 20 | |
| 21 | include $(CLANG_LEVEL)/Makefile |
| 22 | |
| 23 | ifndef IS_UNITTEST_LEVEL |
| 24 | |
Daniel Dunbar | 9acd0d9 | 2011-02-04 17:12:27 +0000 | [diff] [blame] | 25 | MAKEFILE_UNITTEST_NO_INCLUDE_COMMON := 1 |
Jeffrey Yasskin | 7a17889 | 2011-02-03 04:51:52 +0000 | [diff] [blame] | 26 | include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest |
| 27 | |
| 28 | endif # IS_UNITTEST_LEVEL |