From: Glenn Morris Date: Fri, 4 Dec 2015 00:57:11 +0000 (-0500) Subject: * Makefile.in: Avoid duplication. X-Git-Url: https://code.delx.au/gnu-emacs/commitdiff_plain/ffefb6e899fbcdcbd79cb34292d57b7bc3043fcc * Makefile.in: Avoid duplication. (have-tests): New rule. (check, check-maybe): Use it. --- diff --git a/Makefile.in b/Makefile.in index 06e5b06570..57e29d7f98 100644 --- a/Makefile.in +++ b/Makefile.in @@ -921,22 +921,16 @@ extraclean: $(extraclean_dirs:=_extraclean) TAGS tags: lib lib-src src $(MAKE) -C src tags - -check-maybe: all +.PHONY: have-tests +have-tests: @if test ! -d test; then \ echo "You do not seem to have the test/ directory."; \ echo "Maybe you are using a release tarfile, rather than a repository checkout."; \ - else \ - $(MAKE) -C test check-maybe; \ + exit 1; \ fi -check: all - @if test ! -d test; then \ - echo "You do not seem to have the test/ directory."; \ - echo "Maybe you are using a release tarfile, rather than a repository checkout."; \ - else \ - $(MAKE) -C test check; \ - fi +check check-maybe: have-tests all + $(MAKE) -C test $@ dist: cd ${srcdir}; ./make-dist