Sign in
gfiber
/
vendor
/
opensource
/
netsnmp
/
eb0842de4058b14dbea7dcc4876d740c5e13cf0f
/
.
/
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
;
}