aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files 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)'