From: Stefano Lattarini Date: Sat, 25 May 2013 20:20:44 +0000 (+0200) Subject: lint: cosmetics: some reordering X-Git-Tag: v1.13.2b~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f61ae294ba3b1a506305f29be3ca4fcbdf538e3f;p=platform%2Fupstream%2Fautomake.git lint: cosmetics: some reordering * syntax-checks.mk: Here. Signed-off-by: Stefano Lattarini --- diff --git a/syntax-checks.mk b/syntax-checks.mk index 4dacc5a..bacb903 100644 --- a/syntax-checks.mk +++ b/syntax-checks.mk @@ -79,6 +79,18 @@ sc_unquoted_DESTDIR \ sc_tabs_in_texi \ sc_at_in_texi +$(syntax_check_rules): automake aclocal +maintainer-check: $(syntax_check_rules) +.PHONY: maintainer-check $(syntax_check_rules) + +# Check that the list of tests given in the Makefile is equal to the +# list of all test scripts in the Automake testsuite. +maintainer-check: maintainer-check-list-of-tests + +# I'm a lazy typist. +lint: maintainer-check +.PHONY: lint + # The recipes of syntax checks require a modern GNU grep. sc_sanity_gnu_grep: $(AM_V_GEN)grep --version | grep 'GNU grep' >/dev/null 2>&1 \ @@ -534,16 +546,3 @@ sc_at_in_texi: echo 'Unescaped @.' 1>&2; \ exit 1; \ fi - -$(syntax_check_rules): automake aclocal -maintainer-check: $(syntax_check_rules) -.PHONY: maintainer-check $(syntax_check_rules) - -## Check that the list of tests given in the Makefile is equal to the -## list of all test scripts in the Automake testsuite. -maintainer-check: maintainer-check-list-of-tests - -# I'm a lazy typist. -lint: maintainer-check -.PHONY: lint -