+Tue May 13 08:20:02 1997 Tom Tromey <tromey@cygnus.com>
+
+ * automake.in (handle_dependencies): Don't generate dependencies
+ if DEP_FILES would be empty.
+
Sun May 11 13:59:14 1997 Tom Tromey <tromey@cygnus.com>
* config.guess: New version from FSF.
+* define LINK if a program is mentioned, even if no C sources appear
+
+* BUILT_SOURCES should not be distributed, even when they appear in
+ another _SOURCES line. [? or maybe just leave this up to the
+ to-be-defined generic distribution method ]
+
* in --cygnus, clean-info not generated at top level
* what if an element of a scanned variable looks like
{
if ($use_dependencies)
{
- # Include GNU-make-specific auto-dep code.
- if ($dir_holds_sources)
+ # Include GNU-make-specific auto-dep code. Don't include it
+ # if DEP_FILES would be empty.
+ if ($dir_holds_sources && keys %dep_files)
{
&define_pretty_variable ('DEP_FILES', '', sort keys %dep_files);
$output_rules .= &file_contents ('depend');