Add clang-format

Use clang-format-3.6 for now.
This commit is contained in:
Tatsuhiro Tsujikawa 2015-12-23 17:45:29 +09:00
parent bc1c9cae00
commit 0a63a7ecc3
3 changed files with 80 additions and 0 deletions

View file

@ -15,6 +15,8 @@ EXTRA_DIST = config.rpath \
dist_doc_DATA = README README.rst README.html
.PHONY: clang-format
if HAVE_RST2HTML
README.html: README.rst
$(RST2HTML) $< > $@
@ -27,3 +29,11 @@ endif # !HAVE_RST2HTML
dist_noinst_DATA = LICENSE.OpenSSL
# Format source files using clang-format. Don't format source files
# under deps directory since we are not responsible for thier coding
# style.
clang-format:
CLANGFORMAT=`git config --get clangformat.binary`; \
test -z $${CLANGFORMAT} && CLANGFORMAT="clang-format"; \
$${CLANGFORMAT} -i src/*.{c,cc,h} src/includes/aria2/*.h \
examples/*.cc test/*.{cc,h}