Commit 98475c57 by DJ Delorie Committed by DJ Delorie

* maint-tool (deps): Scan for headers in $srcdir also.

From-SVN: r65653
parent 9959c8c7
2003-04-15 DJ Delorie <dj@redhat.com>
* maint-tool (deps): Scan for headers in $srcdir also.
2003-04-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
PR target/10338
......
......@@ -223,6 +223,14 @@ sub deps {
}
$mine{'config.h'} = "config.h";
opendir(INC, $srcdir);
while ($f = readdir INC) {
next unless $f =~ /\.h$/;
$mine{$f} = "\$(srcdir)/$f";
$deps{$f} = join(' ', &deps_for("$srcdir/$f"));
}
$mine{'config.h'} = "config.h";
open(IN, "$srcdir/Makefile.in");
open(OUT, ">$srcdir/Makefile.tmp");
while (<IN>) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment