blob: 066d9a62d45587a443d37e8dec85e63585f48d6a [file] [log] [blame]
#!/usr/bin/perl
# hack: strip include dependancies that are probably not in our source tree.
if (/^\# DO NOT DELETE THIS LINE/) {
$doit=1;
}
if ($doit == 1) {
s#/usr/(include|lib|local)/[^\s]+##g;
print if (! /^\w+\.o:\s*$/);
} else {
print;
}