diff options
author | EuAndreh <eu@euandre.org> | 2021-06-26 21:48:18 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-26 21:49:20 -0300 |
commit | 59f34fe49527fc697bd86145aa974076c83eb404 (patch) | |
tree | ee4748e63d034b86e50b78724d5812cd7e001681 /Makefile | |
parent | aux/utils.sh: Remove unused file (diff) | |
download | remembering-59f34fe49527fc697bd86145aa974076c83eb404.tar.gz remembering-59f34fe49527fc697bd86145aa974076c83eb404.tar.xz |
aux/: Update, adapt Makefile accordingly
Diffstat (limited to '')
-rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -42,9 +42,9 @@ check: all run-tests dev-check: check public sh aux/assert-shellcheck.sh sh aux/workflow/assert-todos.sh - sh aux/workflow/assert-changelog.sh $(NAME) $(NAME) - sh aux/workflow/assert-readme.sh $(NAME) $(MAILING_LIST) - sh aux/workflow/assert-manpages.sh $(NAME) $(MAILING_LIST) + 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) install: all mkdir -p $(DESTDIR)$(PREFIX)/bin @@ -59,14 +59,14 @@ clean: rm -rf public/ tests/test-profiles/ src/remembering src/remembering-c run-tests $(manpages) fallible* vgcore* remembering-test.* dist: - sh aux/workflow/dist.sh $(DATE) $(VERSION) $(NAME) $(NAME) $(MAILING_LIST) + sh aux/workflow/dist.sh -d $(DATE) -V $(VERSION) -n $(NAME) -m $(MAILING_LIST) l10n-gen: sh aux/workflow/l10n.sh -l '$(TRANSLATIONS)' $(manpages.en.in) public: l10n-gen all README.md TODOs.md CHANGELOG.md - sh aux/workflow/public.sh Remembering $(NAME) $(MAILING_LIST) public + sh aux/workflow/public.sh -n $(NAME) -m $(MAILING_LIST) -o public sh aux/workflow/manpages.sh -Ho public $(manpages) spellcheck: public - aux/workflow/assert-spelling.sh -l '$(TRANSLATIONS) en' + aux/workflow/assert-spelling.sh -l '$(TRANSLATIONS) en' $$(find public -type f -name '*.html') |