Home | History | Annotate | Download | only in util

Lines Matching refs:deps

161             #   target SPACE : SPACE deps
164 # won't get mixed up with the target / deps delimiter. We use this
329 my ($target, $deps) = $procedure->($depfile, $_);
330 $collect{$target}->{$deps} = 1 if defined $target;
347 my @deps = sort keys %{$collect{$target}};
349 while (@deps) {
353 while (@deps && ($buf eq ''
354 || length($buf) + length($deps[0]) <= 77)) {
355 $buf .= ' ' . shift @deps;
357 $buf .= ' '.$continuation if @deps;