freebsd-dev/sys/i386/conf/makeLINT.pl
Poul-Henning Kamp 1b3c07c893 Duh! LINT is called NOTES these days.
Make sure LINT checks profiling code as well.
2000-10-14 08:40:47 +00:00

24 lines
487 B
Perl

#! /usr/bin/perl
# $FreeBSD$
$lno=0;
while (<>) {
chop;
s/#.*//;
s/\f//g;
s/^[ \t]+//;
$line = $_;
$lno++;
($key, @rest) = split;
next if ($key eq "");
next if ($key =~ /^hint\./);
if ($key eq "machine" || $key eq "ident" || $key eq "device" ||
$key eq "makeoptions" || $key eq "options" ||
$key eq "profile" ||
$key eq "cpu" || $key eq "option" || $key eq "maxusers") {
print "$line\n";
} else {
print STDERR "unrecognized line: line $lno: $line\n";
}
}