From 2f2bc5a990c915f01434268fe0e65c4122d89895 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Wed, 1 Sep 2021 10:20:50 -0300 Subject: Makefile: Add repocheck.sh to "dev-check" target, separate it from the canonical path --- Makefile | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 35c8e0f..81e5b64 100644 --- a/Makefile +++ b/Makefile @@ -43,13 +43,6 @@ check: all run-tests sh tests/ranking.sh sh tests/signals.sh -dev-check: check public - sh aux/assert-shellcheck.sh - 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)' - install: all mkdir -p '$(DESTDIR)$(PREFIX)/bin' cp src/remembering '$(DESTDIR)$(PREFIX)/bin' @@ -62,6 +55,21 @@ uninstall: clean: rm -rf public/ tests/test-profiles/ src/remembering src/remembering-c run-tests $(manpages) fallible* vgcore* remembering-test.* + +# +# Personal workflow targets +# + +dev-check: check public + sh aux/assert-shellcheck.sh + sh aux/workflow/assert-todos.sh + sh aux/workflow/assert-changelog.sh -n '$(NAME)' $(EXTRA_VERSION) + sh aux/workflow/assert-readme.sh -n '$(NAME)' -m '$(MAILING_LIST)' \ + $(EXTRA_VERSION) + sh aux/workflow/assert-manpages.sh -n '$(NAME)' -m '$(MAILING_LIST)' \ + -l '$(TRANSLATIONS) en' $(manpages.en.in) + sh aux/workflow/repocheck.sh + dist: sh aux/workflow/dist.sh -d '$(DATE)' -V '$(VERSION)' -n '$(NAME)' -m '$(MAILING_LIST)' -- cgit v1.2.3