Sign in
gfiber
/
vendor
/
opensource
/
netsnmp
/
7a649e8cafaa69064cb4d0e153791d87f17e044d
/
.
/
makenosysdepend.pl
blob: 00d52618a2deda1590b16333888f006ec8a72ee0 [
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+\.lo:\s*$/
);
}
else
{
print
;
}