impove make pretty nesting.
authorng0 <ng0@n0.is>
Sun, 27 Oct 2019 13:07:15 +0000 (13:07 +0000)
committerng0 <ng0@n0.is>
Sun, 27 Oct 2019 13:07:15 +0000 (13:07 +0000)
Makefile.am

index 579939b09e01e765f05107ab4ccb0e914408d2db..34e2c5e970c700652e5417249540cad2699df389 100644 (file)
@@ -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)