From 8ab5451d5ed72e662dadee139e0cb6913366ce43 Mon Sep 17 00:00:00 2001 From: ng0 Date: Sun, 27 Oct 2019 13:07:15 +0000 Subject: impove make pretty nesting. --- Makefile.am | 13 ++++++++----- 1 file 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) -- cgit v1.2.3