diff options
author | EuAndreh <eu@euandre.org> | 2021-01-27 13:09:42 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-01-27 13:09:42 -0300 |
commit | 53d7c1b4de2d443d531ac4b630f6976c88640815 (patch) | |
tree | 9fc004a645bda202cb82b9ff9fbd880646d97c4d /Makefile | |
parent | v0.1.2: Use sed over tac for POSIX compatibility (diff) | |
download | remembering-53d7c1b4de2d443d531ac4b630f6976c88640815.tar.gz remembering-53d7c1b4de2d443d531ac4b630f6976c88640815.tar.xz |
mv build-aux/ aux/
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -34,8 +34,8 @@ check: if [ -d .git ]; then \ echo 'Assuming Git repository, running development checks.'; \ - sh build-aux/assert-shellcheck.sh; \ - sh build-aux/workflow/assert-todos.sh; \ + sh aux/assert-shellcheck.sh; \ + sh aux/workflow/assert-todos.sh; \ fi dist: @@ -53,9 +53,9 @@ dist: NAME = remembering public: README.md TODOs.md CHANGELOG.md - sh build-aux/workflow/TODOs.sh $(NAME) $(NAME) public-inbox - sh build-aux/workflow/README.sh $(NAME) $(NAME) - sh build-aux/workflow/CHANGELOG.sh $(NAME) + sh aux/workflow/TODOs.sh $(NAME) $(NAME) public-inbox + sh aux/workflow/README.sh $(NAME) $(NAME) + sh aux/workflow/CHANGELOG.sh $(NAME) groff -m man -Thtml remembering.1 > public/remembering.1.html groff -m man -Thtml remembering.5 > public/remembering.5.html |