The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

test:	{ my @t = <*.t>;
	  s/\.t$/.ok/ foreach @t;
	  @t;
	}

%.ok:	%.out.exp %.out
	diff $DEP0 $DEP1 > $TARGET

%.out:
	{ my ($maker, $target, $deps, $matches) = @_;
	  my $dbg = $ENV{DEBUG} ? '-d ' : '';
	  system "$^X $dbg-I../../blib/lib $matches->[0].t 2>&1 | egrep . | grep -v Gress.pm | grep -v Maker.pm | grep -v '0 tests' > $target";
	}