Sat Aug 2 13:32:45 1997 Tom Tromey <tromey@cygnus.com>
+ * automake.in (do_check_merge_target): In --cygnus mode, check
+ doesn't depend on all.
+
* automake.in (output_yacc_build_rule): Use YACCFLAGS, not
YFLAGS. Per GNU Standards.
push (@phony, 'check-local');
}
- if (! &variable_defined ('SUBDIRS'))
+ # In --cygnus mode, check doesn't depend on all.
+ if (! $cygnus_mode)
{
- # 'check' must depend on `all', but not when doing recursive
- # build.
- unshift (@check, 'all');
- }
- else
- {
- # When subdirs are used, do the `all' build and then do all
- # the recursive stuff. Actually use `all-am' because it
- # doesn't recurse; we rely on the check target in the subdirs
- # to do the required builds there.
- unshift (@check, 'all-am');
+ if (! &variable_defined ('SUBDIRS'))
+ {
+ # 'check' must depend on `all', but not when doing
+ # recursive build.
+ unshift (@check, 'all');
+ }
+ else
+ {
+ # When subdirs are used, do the `all' build and then do
+ # all the recursive stuff. Actually use `all-am' because
+ # it doesn't recurse; we rely on the check target in the
+ # subdirs to do the required builds there.
+ unshift (@check, 'all-am');
+ }
}
# The check target must depend on the local equivalent of `all',