+Wed Feb 26 00:20:39 1997 Tom Tromey <tromey@cygnus.com>
+
+ * automake.in (handle_tags): In default case, add @tags_deps to
+ dependencies of tags target.
+
Tue Feb 25 23:46:29 1997 Tom Tromey <tromey@cygnus.com>
* automake.in (handle_tests): If a test failed, then make should
# Every Makefile must define some sort of TAGS rule.
# Otherwise, it would be possible for a top-level "make TAGS"
# to fail because some subdirectory failed.
- $output_rules .= "tags: TAGS\nTAGS:\n\n";
+ $output_rules .= ("tags: " . join (' ', @tags_deps)
+ . " TAGS\nTAGS:\n\n");
}
}