2009-01-20 03:20:01 +08:00
|
|
|
##===- tools/Makefile --------------------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
2010-06-09 04:34:18 +08:00
|
|
|
CLANG_LEVEL := ..
|
2012-08-09 08:05:27 +08:00
|
|
|
|
2012-08-10 04:21:38 +08:00
|
|
|
include $(CLANG_LEVEL)/../../Makefile.config
|
|
|
|
|
2012-08-10 05:02:52 +08:00
|
|
|
DIRS := driver libclang c-index-test arcmt-test c-arcmt-test diagtool \
|
2013-03-22 19:43:51 +08:00
|
|
|
clang-check clang-format
|
2009-01-20 03:20:01 +08:00
|
|
|
|
2012-08-10 04:21:38 +08:00
|
|
|
# Recurse into the extra repository of tools if present.
|
2012-08-10 05:02:52 +08:00
|
|
|
OPTIONAL_DIRS := extra
|
2010-03-07 08:17:28 +08:00
|
|
|
|
2012-10-03 16:39:19 +08:00
|
|
|
ifeq ($(BUILD_CLANG_ONLY),YES)
|
2012-11-07 03:14:25 +08:00
|
|
|
DIRS := driver libclang c-index-test
|
2012-10-03 16:39:19 +08:00
|
|
|
OPTIONAL_DIRS :=
|
|
|
|
endif
|
|
|
|
|
2010-06-09 04:34:18 +08:00
|
|
|
include $(CLANG_LEVEL)/Makefile
|