build: preparatory refactoring
[platform/upstream/automake.git] / syntax-checks.mk
1 # Maintainer checks for Automake.  Requires GNU make.
2
3 # Copyright (C) 2012-2013 Free Software Foundation, Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 # We also have to take into account VPATH builds (where some generated
19 # tests might be in '$(builddir)' rather than in '$(srcdir)'), TAP-based
20 # tests script (which have a '.tap' extension) and helper scripts used
21 # by other test cases (which have a '.sh' extension).
22 xtests := $(shell \
23   if test $(srcdir) = .; then \
24      dirs=.; \
25    else \
26      dirs='$(srcdir) .'; \
27    fi; \
28    for d in $$dirs; do \
29      for s in tap sh; do \
30        ls $$d/t/ax/*.$$s $$d/t/*.$$s $$d/contrib/t/*.$$s 2>/dev/null; \
31      done; \
32    done | sort)
33
34 xdefs = \
35   $(srcdir)/t/ax/am-test-lib.sh \
36   $(srcdir)/t/ax/test-lib.sh \
37   $(srcdir)/t/ax/test-defs.in
38
39 ams := $(shell find $(srcdir) -name '*.dir' -prune -o -name '*.am' -print)
40
41 # Some simple checks, and then ordinary check.  These are only really
42 # guaranteed to work on my machine.
43 syntax_check_rules = \
44 $(sc_tests_plain_check_rules) \
45 sc_diff_automake \
46 sc_diff_aclocal \
47 sc_no_brace_variable_expansions \
48 sc_rm_minus_f \
49 sc_no_for_variable_in_macro \
50 sc_mkinstalldirs \
51 sc_pre_normal_post_install_uninstall \
52 sc_perl_no_undef \
53 sc_perl_no_split_regex_space \
54 sc_cd_in_backquotes \
55 sc_cd_relative_dir \
56 sc_perl_at_uscore_in_scalar_context \
57 sc_perl_local \
58 sc_AMDEP_TRUE_in_automake_in \
59 sc_tests_make_without_am_makeflags \
60 $(sc_obsolete_requirements_rules) \
61 sc_tests_no_source_defs \
62 sc_tests_obsolete_variables \
63 sc_tests_here_document_format \
64 sc_tests_command_subst \
65 sc_tests_exit_not_Exit \
66 sc_tests_automake_fails \
67 sc_tests_required_after_defs \
68 sc_tests_overriding_macros_on_cmdline \
69 sc_tests_plain_sleep \
70 sc_tests_ls_t \
71 sc_tests_executable \
72 sc_m4_am_plain_egrep_fgrep \
73 sc_tests_no_configure_in \
74 sc_tests_PATH_SEPARATOR \
75 sc_tests_logs_duplicate_prefixes \
76 sc_tests_makefile_variable_order \
77 sc_perl_at_substs \
78 sc_unquoted_DESTDIR \
79 sc_tabs_in_texi \
80 sc_at_in_texi
81
82 ## These check avoids accidental configure substitutions in the source.
83 ## There are exactly 8 lines that should be modified from automake.in to
84 ## automake, and 9 lines that should be modified from aclocal.in to
85 ## aclocal.
86 automake_diff_no = 8
87 aclocal_diff_no = 9
88 sc_diff_automake sc_diff_aclocal: sc_diff_% :
89         @set +e; tmp=$*-diffs.tmp; \
90          diff -u $(srcdir)/$*.in $* > $$tmp; test $$? -eq 1 || exit 1; \
91          added=`grep -v '^+++ ' $$tmp | grep -c '^+'` || exit 1; \
92          removed=`grep -v '^--- ' $$tmp | grep -c '^-'` || exit 1; \
93          test $$added,$$removed = $($*_diff_no),$($*_diff_no) \
94           || { \
95             echo "Found unexpected diffs between $*.in and $*"; \
96             echo "Lines added:   $$added"  ; \
97             echo "Lines removed: $$removed"; \
98             cat $$tmp >&2; \
99             exit 1; \
100           } >&1; \
101         rm -f $$tmp
102
103 ## Expect no instances of '${...}'.  However, $${...} is ok, since that
104 ## is a shell construct, not a Makefile construct.
105 sc_no_brace_variable_expansions:
106         @if grep -v '^ *#' $(ams) | grep -F '$${' | grep -F -v '$$$$'; then \
107           echo "Found too many uses of '\$${' in the lines above." 1>&2; \
108           exit 1; \
109         else :; fi
110
111 ## Make sure 'rm' is called with '-f'.
112 sc_rm_minus_f:
113         @if grep -v '^#' $(ams) $(xtests) \
114            | grep -vE '/(spy-rm\.tap|subobj-clean.*-pr10697\.sh):' \
115            | grep -E '\<rm ([^-]|\-[^f ]*\>)'; \
116         then \
117           echo "Suspicious 'rm' invocation." 1>&2; \
118           exit 1; \
119         else :; fi
120
121 ## Never use something like "for file in $(FILES)", this doesn't work
122 ## if FILES is empty or if it contains shell meta characters (e.g. $ is
123 ## commonly used in Java filenames).
124 sc_no_for_variable_in_macro:
125         @if grep 'for .* in \$$(' $(ams) | grep -v '/Makefile\.am:'; then \
126           echo 'Use "list=$$(mumble); for var in $$$$list".' 1>&2 ; \
127           exit 1; \
128         else :; fi
129
130 ## Make sure all invocations of mkinstalldirs are correct.
131 sc_mkinstalldirs:
132         @if grep -n 'mkinstalldirs' $(ams) \
133               | grep -F -v '$$(mkinstalldirs)' \
134               | grep -v '^\./Makefile.am:[0-9][0-9]*:  *lib/mkinstalldirs \\$$'; \
135         then \
136           echo "Found incorrect use of mkinstalldirs in the lines above" 1>&2; \
137           exit 1; \
138         else :; fi
139
140 ## Make sure all calls to PRE/NORMAL/POST_INSTALL/UNINSTALL
141 sc_pre_normal_post_install_uninstall:
142         @if grep -E -n '\((PRE|NORMAL|POST)_(|UN)INSTALL\)' $(ams) | \
143               grep -v ':##' | grep -v ':        @\$$('; then \
144           echo "Found incorrect use of PRE/NORMAL/POST_INSTALL/UNINSTALL in the lines above" 1>&2; \
145           exit 1; \
146         else :; fi
147
148 ## We never want to use "undef", only "delete", but for $/.
149 sc_perl_no_undef:
150         @if grep -n -w 'undef ' $(srcdir)/automake.in | \
151               grep -F -v 'undef $$/'; then \
152           echo "Found undef in automake.in; use delete instead" 1>&2; \
153           exit 1; \
154         fi
155
156 ## We never want split (/ /,...), only split (' ', ...).
157 sc_perl_no_split_regex_space:
158         @if grep -n 'split (/ /' $(srcdir)/automake.in; then \
159           echo "Found bad split in the lines above." 1>&2; \
160           exit 1; \
161         fi
162
163 ## Look for cd within backquotes
164 sc_cd_in_backquotes:
165         @if grep -n '^[^#]*` *cd ' $(srcdir)/automake.in $(ams); then \
166           echo "Consider using \$$(am__cd) in the lines above." 1>&2; \
167           exit 1; \
168         fi
169
170 ## Look for cd to a relative directory (may be influenced by CDPATH).
171 ## Skip some known directories that are OK.
172 sc_cd_relative_dir:
173         @if grep -n '^[^#]*cd ' $(srcdir)/automake.in $(ams) | \
174               grep -v 'echo.*cd ' | \
175               grep -v 'am__cd =' | \
176               grep -v '^[^#]*cd [./]' | \
177               grep -v '^[^#]*cd \$$(top_builddir)' | \
178               grep -v '^[^#]*cd "\$$\$$am__cwd' | \
179               grep -v '^[^#]*cd \$$(abs' | \
180               grep -v '^[^#]*cd "\$$(DESTDIR)'; then \
181           echo "Consider using \$$(am__cd) in the lines above." 1>&2; \
182           exit 1; \
183         fi
184
185 ## Using @_ in a scalar context is most probably a programming error.
186 sc_perl_at_uscore_in_scalar_context:
187         @if grep -Hn '[^@_A-Za-z0-9][_A-Za-z0-9]*[^) ] *= *@_' $(srcdir)/automake.in; then \
188           echo "Using @_ in a scalar context in the lines above." 1>&2; \
189           exit 1; \
190         fi
191
192 ## Allow only few variables to be localized in Automake.
193 sc_perl_local:
194         @if egrep -v '^[ \t]*local \$$[_~]( *=|;)' $(srcdir)/automake.in | \
195                 grep '^[ \t]*local [^*]'; then \
196           echo "Please avoid 'local'." 1>&2; \
197           exit 1; \
198         fi
199
200 ## Don't let AMDEP_TRUE substitution appear in automake.in.
201 sc_AMDEP_TRUE_in_automake_in:
202         @if grep '@AMDEP''_TRUE@' $(srcdir)/automake.in; then \
203           echo "Don't put AMDEP_TRUE substitution in automake.in" 1>&2; \
204           exit 1; \
205         fi
206
207 ## Recursive make invocations should always pass $(AM_MAKEFLAGS)
208 ## to $(MAKE), for portability to non-GNU make.
209 sc_tests_make_without_am_makeflags:
210         @if grep '^[^#].*(MAKE) ' $(ams) $(srcdir)/automake.in \
211             | grep -v 'AM_MAKEFLAGS' \
212             | grep -v '/am/header-vars\.am:.*am--echo.*| $$(MAKE) -f *-'; \
213         then \
214           echo 'Use $$(MAKE) $$(AM_MAKEFLAGS).' 1>&2; \
215           exit 1; \
216         fi
217
218 ## Look out for some obsolete variables.
219 sc_tests_obsolete_variables:
220         @vars=" \
221           using_tap \
222           am_using_tap \
223           test_prefer_config_shell \
224           original_AUTOMAKE \
225           original_ACLOCAL \
226           parallel_tests \
227           am_parallel_tests \
228         "; \
229         seen=""; \
230         for v in $$vars; do \
231           if grep -E "\b$$v\b" $(xtests) $(xdefs); then \
232             seen="$$seen $$v"; \
233           fi; \
234         done; \
235         if test -n "$$seen"; then \
236           for v in $$seen; do \
237             case $$v in \
238               parallel_tests|am_parallel_tests) v2=am_serial_tests;; \
239               *) v2=am_$$v;; \
240             esac; \
241             echo "Variable '$$v' is obsolete, use '$$v2' instead." 1>&2; \
242           done; \
243           exit 1; \
244         else :; fi
245
246 ## Look out for obsolete requirements specified in the test cases.
247 sc_obsolete_requirements_rules = sc_no_texi2dvi-o sc_no_makeinfo-html
248 modern-requirement.texi2dvi-o = texi2dvi
249 modern-requirement.makeinfo-html = makeinfo
250
251 $(sc_obsolete_requirements_rules): sc_no_% :
252         @if grep -E 'required=.*\b$*\b' $(xtests); then \
253           echo "Requirement '$*' is obsolete and shouldn't" \
254                "be used anymore." >&2; \
255           echo "You should use '$(modern-requirement.$*)' instead." >&2; \
256           exit 1; \
257         fi
258
259 ## Tests should never call some programs directly, but only through the
260 ## corresponding variable (e.g., '$MAKE', not 'make').  This will allow
261 ## the programs to be overridden at configure time (for less brittleness)
262 ## or by the user at make time (to allow better testsuite coverage).
263 sc_tests_plain_check_rules = \
264   sc_tests_plain_egrep \
265   sc_tests_plain_fgrep \
266   sc_tests_plain_make \
267   sc_tests_plain_perl \
268   sc_tests_plain_automake \
269   sc_tests_plain_aclocal \
270   sc_tests_plain_autoconf \
271   sc_tests_plain_autoupdate \
272   sc_tests_plain_autom4te \
273   sc_tests_plain_autoheader \
274   sc_tests_plain_autoreconf
275
276 toupper = $(shell echo $(1) | LC_ALL=C tr '[a-z]' '[A-Z]')
277
278 $(sc_tests_plain_check_rules): sc_tests_plain_% :
279         @# The leading ':' in the grep below is what is printed by the
280         @# preceding 'grep -v' after the file name.
281         @# It works here as a poor man's substitute for beginning-of-line
282         @# marker.
283         @if grep -v '^[         ]*#' $(xtests) \
284            | $(EGREP) '(:|\bif|\bnot|[;!{\|\(]|&&|\|\|)[        ]*?$*\b'; \
285          then \
286            echo 'Do not run "$*" in the above tests.' \
287                 'Use "$$$(call toupper,$*)" instead.' 1>&2; \
288            exit 1; \
289         fi
290
291 ## Tests should only use END and EOF for here documents
292 ## (so that the next test is effective).
293 sc_tests_here_document_format:
294         @if grep '<<' $(xtests) | grep -Ev '\b(END|EOF)\b|\bcout <<'; then \
295           echo 'Use here documents with "END" and "EOF" only, for greppability.' 1>&2; \
296           exit 1; \
297         fi
298
299 ## Our test case should use the $(...) POSIX form for command substitution,
300 ## rather than the older `...` form.
301 ## The point of ignoring text on here-documents is that we want to exempt
302 ## Makefile.am rules, configure.ac code and helper shell script created and
303 ## used by out shell scripts, because Autoconf (as of version 2.69) does not
304 ## yet ensure that $CONFIG_SHELL will be set to a proper POSIX shell.
305 sc_tests_command_subst:
306         @found=false; \
307         scan () { \
308           sed -n -e '/^#/d' \
309                  -e '/<<.*END/,/^END/b' -e '/<<.*EOF/,/^EOF/b' \
310                  -e 's/\\`/\\{backtick}/' \
311                  -e "s/[^\\]'\([^']*\`[^']*\)*'/'{quoted-text}'/g" \
312                  -e '/`/p' $$*; \
313         }; \
314         for file in $(xtests); do \
315           res=`scan $$file`; \
316           if test -n "$$res"; then \
317             echo "$$file:$$res"; \
318             found=true; \
319           fi; \
320         done; \
321         if $$found; then \
322           echo 'Use $$(...), not `...`, for command substitutions.' >&2; \
323           exit 1; \
324         fi
325
326 ## Tests should no longer call 'Exit', just 'exit'.  That's because we
327 ## now have in place a better workaround to ensure the exit status is
328 ## transported correctly across the exit trap.
329 sc_tests_exit_not_Exit:
330         @if grep 'Exit' $(xtests) $(xdefs) | grep -Ev '^[^:]+: *#' | grep .; then \
331           echo "Use 'exit', not 'Exit'; it's obsolete now." 1>&2; \
332           exit 1; \
333         fi
334
335 ## Guard against obsolescent uses of ./defs in tests.  Now,
336 ## 'test-init.sh' should be used instead.
337 sc_tests_no_source_defs:
338         @if grep -E '\. .*defs($$| )' $(xtests); then \
339           echo "Source 'test-init.sh', not './defs'." 1>&2; \
340           exit 1; \
341         fi
342
343 ## Use AUTOMAKE_fails when appropriate
344 sc_tests_automake_fails:
345         @if grep -v '^#' $(xtests) | grep '\$$AUTOMAKE.*&&.*exit'; then \
346           echo 'Use AUTOMAKE_fails + grep to catch automake failures in the above tests.' 1>&2;  \
347           exit 1; \
348         fi
349
350 ## Setting 'required' after sourcing './defs' is a bug.
351 sc_tests_required_after_defs:
352         @for file in $(xtests); do \
353           if out=`sed -n '/defs/,$${/required=/p;}' $$file`; test -n "$$out"; then \
354             echo 'Do not set "required" after sourcing "defs" in '"$$file: $$out" 1>&2; \
355             exit 1; \
356           fi; \
357         done
358
359 ## Overriding a Makefile macro on the command line is not portable when
360 ## recursive targets are used.  Better use an envvar.  SHELL is an
361 ## exception, POSIX says it can't come from the environment.  V, DESTDIR,
362 ## DISTCHECK_CONFIGURE_FLAGS and DISABLE_HARD_ERRORS are exceptions, too,
363 ## as package authors are urged not to initialize them anywhere.
364 ## Finally, 'exp' is used by some ad-hoc checks, where we ensure it's
365 ## ok to override it from the command line.
366 sc_tests_overriding_macros_on_cmdline:
367         @if grep -E '\$$MAKE .*(SHELL=.*=|=.*SHELL=)' $(xtests); then \
368           echo 'Rewrite "$$MAKE foo=bar SHELL=$$SHELL" as "foo=bar $$MAKE -e SHELL=$$SHELL"' 1>&2; \
369           echo ' in the above lines, it is more portable.' 1>&2; \
370           exit 1; \
371         fi
372 # The first s/// tries to account for usages like "$MAKE || st=$?".
373 # 'DISTCHECK_CONFIGURE_FLAGS' and 'exp' are allowed to contain whitespace in
374 # their definitions, hence the more complex last three substitutions below.
375         @if sed -e 's/ || .*//' -e 's/ && .*//' \
376                 -e 's/ DESTDIR=[^ ]*/ /' -e 's/ SHELL=[^ ]*/ /' \
377                 -e 's/ V=[^ ]*/ /' -e 's/ DISABLE_HARD_ERRORS=[^ ]*/ /' \
378                 -e "s/ DISTCHECK_CONFIGURE_FLAGS='[^']*'/ /" \
379                 -e 's/ DISTCHECK_CONFIGURE_FLAGS="[^"]*"/ /' \
380                 -e 's/ DISTCHECK_CONFIGURE_FLAGS=[^ ]/ /' \
381                 -e "s/ exp='[^']*'/ /" \
382                 -e 's/ exp="[^"]*"/ /' \
383                 -e 's/ exp=[^ ]/ /' \
384               $(xtests) | grep '\$$MAKE .*='; then \
385           echo 'Rewrite "$$MAKE foo=bar" as "foo=bar $$MAKE -e" in the above lines,' 1>&2; \
386           echo 'it is more portable.' 1>&2; \
387           exit 1; \
388         fi
389         @if grep 'SHELL=.*\$$MAKE' $(xtests); then \
390           echo '$$MAKE ignores the SHELL envvar, use "$$MAKE SHELL=$$SHELL" in' 1>&2; \
391           echo 'the above lines.' 1>&2; \
392           exit 1; \
393         fi
394
395 ## Prefer use of our 'is_newest' auxiliary script over the more hacky
396 ## idiom "test $(ls -1t new old | sed 1q) = new", which is both more
397 ## cumbersome and more fragile.
398 sc_tests_ls_t:
399         @if LC_ALL=C grep -E '\bls(\s+-[a-zA-Z0-9]+)*\s+-[a-zA-Z0-9]*t' \
400             $(xtests); then \
401           echo "Use 'is_newest' rather than hacks based on 'ls -t'" 1>&2; \
402           exit 1; \
403         fi
404
405 ## Test scripts must be executable.
406 sc_tests_executable:
407         @st=0; \
408         for f in $(xtests); do \
409           case $$f in \
410             t/ax/*|./t/ax/*|$(srcdir)/t/ax/*);; \
411             *) test -x $$f || { echo "$$f: not executable" >&2; st=1; }; \
412           esac; \
413         done; \
414         test $$st -eq 0 || echo '$@: some test scripts are not executable' >&2; \
415         exit $$st;
416
417
418 ## Never use 'sleep 1' to create files with different timestamps.
419 ## Use '$sleep' instead.  Some filesystems (e.g., Windows) have only
420 ## a 2sec resolution.
421 sc_tests_plain_sleep:
422         @if grep -E '\bsleep +[12345]\b' $(xtests); then \
423           echo 'Do not use "sleep x" in the above tests.  Use "$$sleep" instead.' 1>&2; \
424           exit 1; \
425         fi
426
427 ## fgrep and egrep are not required by POSIX.
428 sc_m4_am_plain_egrep_fgrep:
429         @if grep -E '\b[ef]grep\b' $(ams) $(srcdir)/m4/*.m4; then \
430           echo 'Do not use egrep or fgrep in the above files,' \
431                'they are not portable.' 1>&2; \
432           exit 1; \
433         fi
434
435 ## Prefer 'configure.ac' over the obsolescent 'configure.in' as the name
436 ## for configure input files in our testsuite.  The latter  has been
437 ## deprecated for several years (at least since autoconf 2.50).
438 sc_tests_no_configure_in:
439         @if grep -E '\bconfigure\\*\.in\b' $(xtests) $(xdefs) \
440               | grep -Ev '/backcompat.*\.(sh|tap):' \
441               | grep -Ev '/autodist-configure-no-subdir\.sh:' \
442               | grep -Ev '/(configure|help)\.sh:' \
443               | grep .; \
444         then \
445           echo "Use 'configure.ac', not 'configure.in', as the name" >&2; \
446           echo "for configure input files in the test cases above." >&2; \
447           exit 1; \
448         fi
449
450 ## Rule to ensure that the testsuite has been run before.  We don't depend
451 ## on 'check' here, because that would be very wasteful in the common case.
452 ## We could run "make check RECHECK_LOGS=" and avoid toplevel races with
453 ## AM_RECURSIVE_TARGETS.  Suggest keeping test directories around for
454 ## greppability of the Makefile.in files.
455 sc_ensure_testsuite_has_run:
456         @if test ! -f '$(TEST_SUITE_LOG)'; then \
457           echo 'Run "env keep_testdirs=yes make check" before' \
458                'running "make maintainer-check"' >&2; \
459           exit 1; \
460         fi
461 .PHONY: sc_ensure_testsuite_has_run
462
463 ## Ensure our warning and error messages do not contain duplicate 'warning:' prefixes.
464 ## This test actually depends on the testsuite having been run before.
465 sc_tests_logs_duplicate_prefixes: sc_ensure_testsuite_has_run
466         @if grep -E '(warning|error):.*(warning|error):' t/*.log; then \
467           echo 'Duplicate warning/error message prefixes seen in above tests.' >&2; \
468           exit 1; \
469         fi
470
471 ## Ensure variables are listed before rules in Makefile.in files we generate.
472 sc_tests_makefile_variable_order: sc_ensure_testsuite_has_run
473         @st=0; \
474         for file in `find t -name Makefile.in -print`; do \
475           latevars=`sed -n \
476             -e :x -e 's/#.*//' \
477             -e '/\\\\$$/{' -e N -e 'b x' -e '}' \
478             -e '# Literal TAB.' \
479             -e '1,/^    /d' \
480             -e '# Allow @ so we match conditionals.' \
481             -e '/^ *[a-zA-Z_@]\{1,\} *=/p' $$file`; \
482           if test -n "$$latevars"; then \
483             echo "Variables are expanded too late in $$file:" >&2; \
484             echo "$$latevars" | sed 's/^/  /' >&2; \
485             st=1; \
486           fi; \
487         done; \
488         test $$st -eq 0 || { \
489           echo 'Ensure variables are expanded before rules' >&2; \
490           exit 1; \
491         }
492
493 ## Using ':' as a PATH separator is not portable.
494 sc_tests_PATH_SEPARATOR:
495         @if grep -E '\bPATH=.*:.*' $(xtests) ; then \
496           echo "Use '\$$PATH_SEPARATOR', not ':', in PATH definitions" \
497                "above." 1>&2; \
498           exit 1; \
499         fi
500
501 ## Try to make sure all @...@ substitutions are covered by our
502 ## substitution rule.
503 sc_perl_at_substs:
504         @if test `grep -E '^[^#]*@[A-Za-z_0-9]+@' aclocal | wc -l` -ne 0; then \
505           echo "Unresolved @...@ substitution in aclocal" 1>&2; \
506           exit 1; \
507         fi
508         @if test `grep -E '^[^#]*@[A-Za-z_0-9]+@' automake | wc -l` -ne 0; then \
509           echo "Unresolved @...@ substitution in automake" 1>&2; \
510           exit 1; \
511         fi
512
513 sc_unquoted_DESTDIR:
514         @if grep -E "[^\'\"]\\\$$\(DESTDIR" $(ams); then \
515           echo 'Suspicious unquoted DESTDIR uses.' 1>&2 ; \
516           exit 1; \
517         fi
518
519 sc_tabs_in_texi:
520         @if grep '      ' $(srcdir)/doc/automake.texi; then \
521           echo 'Do not use tabs in the manual.' 1>&2; \
522           exit 1; \
523         fi
524
525 sc_at_in_texi:
526         @if grep -E '([^@]|^)@([         ][^@]|$$)' $(srcdir)/doc/automake.texi; \
527         then \
528           echo 'Unescaped @.' 1>&2; \
529           exit 1; \
530         fi
531
532 $(syntax_check_rules): automake aclocal
533 maintainer-check: $(syntax_check_rules)
534 .PHONY: maintainer-check $(syntax_check_rules)
535
536 ## Check that the list of tests given in the Makefile is equal to the
537 ## list of all test scripts in the Automake testsuite.
538 maintainer-check: maintainer-check-list-of-tests