2011-02-03 12:51:52 +08:00
|
|
|
##===- unittests/Makefile ----------------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
|
|
|
# If CLANG_LEVEL is not set, then we are the top-level Makefile. Otherwise, we
|
|
|
|
# are being included from a subdirectory makefile.
|
|
|
|
|
|
|
|
ifndef CLANG_LEVEL
|
|
|
|
|
|
|
|
IS_UNITTEST_LEVEL := 1
|
|
|
|
CLANG_LEVEL := ..
|
2014-11-01 00:44:30 +08:00
|
|
|
PARALLEL_DIRS = CodeGen Basic Lex Driver Format ASTMatchers AST Tooling \
|
2015-03-08 12:00:33 +08:00
|
|
|
Rewrite Sema
|
2012-12-14 00:09:42 +08:00
|
|
|
|
|
|
|
include $(CLANG_LEVEL)/../..//Makefile.config
|
|
|
|
|
2013-08-22 23:50:02 +08:00
|
|
|
ifeq ($(ENABLE_CLANG_ARCMT),1)
|
2015-03-05 01:59:34 +08:00
|
|
|
PARALLEL_DIRS += Frontend libclang StaticAnalyzer
|
2012-12-14 00:09:42 +08:00
|
|
|
endif
|
2011-02-03 12:51:52 +08:00
|
|
|
|
|
|
|
endif # CLANG_LEVEL
|
|
|
|
|
|
|
|
include $(CLANG_LEVEL)/Makefile
|
|
|
|
|
|
|
|
ifndef IS_UNITTEST_LEVEL
|
|
|
|
|
2011-02-05 01:12:27 +08:00
|
|
|
MAKEFILE_UNITTEST_NO_INCLUDE_COMMON := 1
|
2011-02-03 12:51:52 +08:00
|
|
|
include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
|
|
|
|
|
|
|
|
endif # IS_UNITTEST_LEVEL
|