You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
|
|
#
|
|
|
|
# This source code is licensed under the MIT license found in the
|
|
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
|
|
|
|
LEVEL=.
|
|
|
|
include Makefile.common
|
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
all:
|
|
|
|
$(MAKE) -C libtooling/atdlib all
|
|
|
|
$(MAKE) -C libtooling all
|
|
|
|
|
|
|
|
.PHONY: test
|
|
|
|
test: all
|
|
|
|
$(MAKE) -C libtooling/atdlib test
|
|
|
|
$(MAKE) -C libtooling test
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
$(MAKE) -C libtooling/atdlib clean
|
|
|
|
$(MAKE) -C libtooling clean
|
|
|
|
|
|
|
|
.PHONY: fmt_all
|
|
|
|
fmt_all:
|
|
|
|
find libtooling \
|
|
|
|
\( -name '*'.cpp -or -name '*'.h -or -name '*'.c -or -name '*'.m -or -name '*'.mm \) \
|
|
|
|
-exec ./clang/install/bin/clang-format -verbose -i \{\} \+
|