diff options
-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: |