diff options
author | ng0 <ng0@n0.is> | 2019-10-27 13:07:15 +0000 |
---|---|---|
committer | ng0 <ng0@n0.is> | 2019-10-27 13:07:15 +0000 |
commit | 8ab5451d5ed72e662dadee139e0cb6913366ce43 (patch) | |
tree | b8f83d013af59a2d13f360c930237659ad803d27 /Makefile.am | |
parent | 0a84fe50b66c50e4cad0f83de48d4588cf5dff03 (diff) |
impove make pretty nesting.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index 579939b09..34e2c5e97 100644 --- a/Makefile.am +++ b/Makefile.am @@ -39,11 +39,14 @@ doc_DATA = COPYING README ACLOCAL_AMFLAGS = -I m4 -# TODO: better nesting. if HAVE_UNCRUSTIFY_BINARY -pretty: - find $(top_srcdir) -type f -name '*.c' -or -name '*.h' -print0 | xargs -0 uncrustify -c $(top_srcdir)/contrib/uncrustify.cfg --replace --no-backup 2>&1 || true -if HAVE_YAPF_BINARY - find $(top_srcdir) -type f -name '*.py' -or -name '*.py.in' -print0 | xargs -0 $(YAPF_BINARY) -i 2>&1 || true +MCRUSTIFY = find $(top_srcdir) -type f -name '*.c' -or -name '*.h' -print0 | xargs -0 uncrustify -c $(top_srcdir)/contrib/uncrustify.cfg --replace --no-backup 2>&1 || true endif + +if HAVE_YAPF_BINARY +MYAPF = find $(top_srcdir) -type f -name '*.py' -or -name '*.py.in' -print0 | xargs -0 $(YAPF_BINARY) -i 2>&1 || true endif + +pretty: + $(MCRUSTIFY) + $(MYAPF) |