2012-08-25 07:29:33 +08:00
|
|
|
##===- tools/extra/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 := ../..
|
|
|
|
|
|
|
|
include $(CLANG_LEVEL)/../../Makefile.config
|
|
|
|
|
2013-01-10 23:19:11 +08:00
|
|
|
PARALLEL_DIRS := remove-cstr-calls tool-template clang-format cpp11-migrate
|
2013-03-02 03:50:52 +08:00
|
|
|
DIRS := test
|
2012-08-25 07:29:33 +08:00
|
|
|
|
|
|
|
include $(CLANG_LEVEL)/Makefile
|
|
|
|
|
2013-03-02 03:50:52 +08:00
|
|
|
# Custom target. Pass request to test/Makefile that knows what to do. To access
|
|
|
|
# this target you'd issue:
|
|
|
|
#
|
|
|
|
# make -C <build_dir>/tools/clang/tools/extra test
|
2012-08-25 07:29:33 +08:00
|
|
|
test::
|
2013-03-02 03:50:52 +08:00
|
|
|
@ $(MAKE) -C test test
|
2012-08-25 07:29:33 +08:00
|
|
|
|
2013-03-02 03:50:52 +08:00
|
|
|
.PHONY: test
|