1999-01-20 05:36:31 +08:00
|
|
|
#!/usr/local/bin/perl -w
|
|
|
|
# Clean the dependency list in a makefile of standard includes...
|
|
|
|
# Written by Ben Laurie <ben@algroup.co.uk> 19 Jan 1999
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
while(<STDIN>) {
|
|
|
|
print;
|
|
|
|
last if /^# DO NOT DELETE THIS LINE/;
|
|
|
|
}
|
|
|
|
|
|
|
|
my %files;
|
|
|
|
|
2001-02-16 21:55:05 +08:00
|
|
|
my $thisfile="";
|
1999-01-20 05:36:31 +08:00
|
|
|
while(<STDIN>) {
|
2001-02-16 21:55:05 +08:00
|
|
|
my ($dummy, $file,$deps)=/^((.*):)? (.*)$/;
|
2001-08-01 01:02:44 +08:00
|
|
|
my $origfile="";
|
2001-02-16 21:55:05 +08:00
|
|
|
$thisfile=$file if defined $file;
|
1999-01-20 05:36:31 +08:00
|
|
|
next if !defined $deps;
|
2001-08-01 01:02:44 +08:00
|
|
|
$origfile=$thisfile;
|
|
|
|
$origfile=~s/\.o$/.c/;
|
1999-01-20 05:36:31 +08:00
|
|
|
my @deps=split ' ',$deps;
|
2001-03-08 20:27:44 +08:00
|
|
|
@deps=grep(!/^\//,@deps);
|
2001-02-16 21:55:05 +08:00
|
|
|
@deps=grep(!/^\\$/,@deps);
|
2001-08-01 01:02:44 +08:00
|
|
|
@deps=grep(!/^$origfile$/,@deps);
|
2001-02-16 21:55:05 +08:00
|
|
|
push @{$files{$thisfile}},@deps;
|
1999-01-20 05:36:31 +08:00
|
|
|
}
|
|
|
|
|
1999-03-11 03:51:43 +08:00
|
|
|
my $file;
|
|
|
|
foreach $file (sort keys %files) {
|
1999-01-20 07:25:22 +08:00
|
|
|
my $len=0;
|
1999-03-11 03:51:43 +08:00
|
|
|
my $dep;
|
2001-08-01 01:02:44 +08:00
|
|
|
my $origfile=$file;
|
|
|
|
$origfile=~s/\.o$/.c/;
|
|
|
|
push @{$files{$file}},$origfile;
|
1999-03-11 03:51:43 +08:00
|
|
|
foreach $dep (sort @{$files{$file}}) {
|
1999-01-20 05:36:31 +08:00
|
|
|
$len=0 if $len+length($dep)+1 >= 80;
|
|
|
|
if($len == 0) {
|
|
|
|
print "\n$file:";
|
|
|
|
$len=length($file)+1;
|
|
|
|
}
|
|
|
|
print " $dep";
|
|
|
|
$len+=length($dep)+1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
print "\n";
|