mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 04:57:38 +03:00
Add clang-format
Use clang-format-3.6 for now.
This commit is contained in:
parent
bc1c9cae00
commit
0a63a7ecc3
3 changed files with 80 additions and 0 deletions
10
Makefile.am
10
Makefile.am
|
@ -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}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue