From e84170924162f11acfe76c7995c5023b2d8ea1da Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 16 Jul 2021 10:27:50 -0300 Subject: Makefile: Stick to 80 columns limit --- Makefile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 0c10c5b..d6d68a6 100644 --- a/Makefile +++ b/Makefile @@ -35,8 +35,10 @@ dev-check: check public sh aux/workflow/assert-todos.sh sh aux/workflow/assert-changelog.sh -n $(NAME) sh aux/workflow/assert-readme.sh -n $(NAME) -m $(MAILING_LIST) - sh aux/workflow/assert-manpages.sh -n $(NAME) -m $(MAILING_LIST) -l '$(TRANSLATIONS) en' $(manpages.en.in) - . aux/lib.sh && $(MAKE) PREFIX=`mkdtemp` install installcheck uninstall uninstallcheck + sh aux/workflow/assert-manpages.sh \ + -n $(NAME) -m $(MAILING_LIST) -l '$(TRANSLATIONS) en' $(manpages.en.in) + . aux/lib.sh && \ + $(MAKE) PREFIX=`mkdtemp` install installcheck uninstall uninstallcheck install: all mkdir -p $(DESTDIR)$(PREFIX)/bin @@ -70,8 +72,10 @@ l10n-gen: README.en.md CHANGELOG.en.md $(manpages.en.in) sh aux/workflow/l10n.sh -l '$(TRANSLATIONS)' -L '$(CONTRIBLANGS)' $? public: l10n-gen all TODOs.md $(manpages) - sh aux/workflow/public.sh -l '$(TRANSLATIONS) $(CONTRIBLANGS) en' -n $(NAME) -m $(MAILING_LIST) -o public + sh aux/workflow/public.sh -l '$(TRANSLATIONS) $(CONTRIBLANGS) en' \ + -n $(NAME) -m $(MAILING_LIST) -o public sh aux/workflow/manpages.sh -Ho public $(manpages) spellcheck: public - sh aux/workflow/assert-spelling.sh -l '$(TRANSLATIONS) en' $$(find public -type f -name '*.html') + sh aux/workflow/assert-spelling.sh -l '$(TRANSLATIONS) en' \ + $$(find public -type f -name '*.html') -- cgit v1.2.3