From: Alexander Barton Date: Fri, 9 Feb 2024 23:03:13 +0000 (+0100) Subject: Streamline the "testsuite" and "srcdoc" make targets X-Git-Tag: rel-27-rc1~44 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git;a=commitdiff_plain;h=c0b8b94550cb589cee39b4e87d8714273d3885f6 Streamline the "testsuite" and "srcdoc" make targets --- diff --git a/Makefile.am b/Makefile.am index 11160711..3ec3965b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,10 +30,10 @@ maintainer-clean-local: rm -f config.log debian testsuite: - cd src/testsuite && ${MAKE} check + ${MAKE} -C src/testsuite check srcdoc: - cd doc && ${MAKE} srcdoc + ${MAKE} -C doc/src srcdoc rpm: distcheck rpm -ta ngircd-*.tar.gz diff --git a/doc/Makefile.am b/doc/Makefile.am index fd1cbfd6..91583f5c 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -86,9 +86,6 @@ uninstall-hook: uninstall-config: rm -f $(DESTDIR)$(sysconfdir)/ngircd.conf -srcdoc: - ${MAKE} -C src srcdoc - -.PHONY: install-config uninstall-config srcdoc +.PHONY: install-config uninstall-config # -eof-