diff options
author | EuAndreh <eu@euandre.org> | 2023-04-02 08:12:53 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-04-02 08:12:53 -0300 |
commit | a7b0e4c6453bbd43037e8751865b73a3f629f2d7 (patch) | |
tree | 7c090d34765104594ded63393d3db655594a47d7 | |
parent | aux/checks/spelling.sh: Do not echo (diff) | |
download | remembering-a7b0e4c6453bbd43037e8751865b73a3f629f2d7.tar.gz remembering-a7b0e4c6453bbd43037e8751865b73a3f629f2d7.tar.xz |
Makefile: Unify calls to aux/dev.mk
-rw-r--r-- | Makefile | 18 | ||||
-rw-r--r-- | TODOs.md | 1 | ||||
-rw-r--r-- | aux/dev.mk | 2 |
3 files changed, 11 insertions, 10 deletions
@@ -65,6 +65,9 @@ uninstall: sh doc/manpages.sh -up '$(DESTDIR)$(MANDIR)' $(manpages) +ALWAYS: + + # # Personal workflow targets # @@ -72,17 +75,14 @@ uninstall: dist: sh aux/workflow/dist.sh -d '$(DATE)' -V '$(VERSION)' -n '$(NAME)' -public: TODOs.md README.md CHANGELOG.md po/po4a.cfg $(manpages) - $(MAKE) -f aux/dev.mk public \ +public po/po4a.cfg dev-check: + $(MAKE) -f aux/dev.mk $@ \ + en_files='$(manpages.en.in)' \ manpages.in='$(manpages.in)' \ - md_files="`echo *.??.md`" \ + md_files="`echo *.??.md`" \ MAILING_LIST='$(MAILING_LIST)' +public: TODOs.md README.md CHANGELOG.md po/po4a.cfg $(manpages) po/po4a.cfg: ALWAYS - $(MAKE) -f aux/dev.mk $@ en_files='$(manpages.en.in)' - -dev: all check public - $(MAKE) -f aux/dev.mk check MAILING_LIST='$(MAILING_LIST)' - -ALWAYS: +dev: all check public dev-check @@ -353,3 +353,4 @@ manpage footers translations exercise dist.sh repo.sh check spelling.sh check +buffer output of tests/*.sh files @@ -108,6 +108,6 @@ manfooter.sentinel: for f in aux/checks/manpages/*.in; do $(MAKE) -f aux/dev.mk "$${f%.in}"; done touch $@ -check: $(test-files) +dev-check: $(test-files) ALWAYS: |