Sign in
gfiber
/
vendor
/
opensource
/
netsnmp
/
4868ac2db888ec02b8ec4f662000a7cc4a44374a
/
.
/
makenosysdepend.pl
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
;
}