diff options
author | EuAndreh <eu@euandre.org> | 2023-04-02 08:18:35 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-04-02 08:18:39 -0300 |
commit | f4ad956613628f29a27bca5a99e40ec1429cc7ab (patch) | |
tree | 476b388b6ea4cabad19354b5d3875e45c9c17405 | |
parent | Makefile: Unify calls to aux/dev.mk (diff) | |
download | remembering-f4ad956613628f29a27bca5a99e40ec1429cc7ab.tar.gz remembering-f4ad956613628f29a27bca5a99e40ec1429cc7ab.tar.xz |
aux/dev.mk: make in parallel over for loop
-rw-r--r-- | aux/dev.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -105,7 +105,7 @@ $(test-files): ALWAYS manfooter.sentinel aux/checks/assert-manpages.sh: manfooter.sentinel manfooter.sentinel: - for f in aux/checks/manpages/*.in; do $(MAKE) -f aux/dev.mk "$${f%.in}"; done + $(MAKE) -f aux/dev.mk `echo aux/checks/manpages/*.in | sed 's|\.in||g'` touch $@ dev-check: $(test-files) |