aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-07-16 10:27:50 -0300
committerEuAndreh <eu@euandre.org>2021-07-16 10:27:50 -0300
commite84170924162f11acfe76c7995c5023b2d8ea1da (patch)
tree36c8121e7da5f62053ca5894004897b863af576e /Makefile
parentMakefile: Remove redundant markdown dependencies from "public" (diff)
downloadgit-permalink-e84170924162f11acfe76c7995c5023b2d8ea1da.tar.gz
git-permalink-e84170924162f11acfe76c7995c5023b2d8ea1da.tar.xz
Makefile: Stick to 80 columns limit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files 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')