summaryrefslogtreecommitdiff
path: root/external/bsd/nvi/dist/perl_scripts/make.pl
blob: 54a9c86c87a17a53f7a12acb3120e29e1ba14442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
sub push_tags {
    my ($fh) = shift;
    my ($tagq) = $curscr->TagQ("msg");
    while(<$fh>) {
	my ($f, $l, $m);
	if ((($f, $l, $m) = split /:/) >= 2 && -f $f && $l =~ /^\d+$/) {
	    $tagq->Add($f, $l, $m);
	}
    }
    $tagq->Push();
}

sub make {
    local (*FH);
    open FH, "make 2>&1 |";
    ::push_tags(\*FH);
    close FH;
}

1;