summaryrefslogtreecommitdiff
path: root/lib/subunit/perl/Makefile.PL.in
blob: 26e1c181f0e0bc9f48e45c0a62c7479064821187 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use ExtUtils::MakeMaker;
WriteMakefile(
    'INSTALL_BASE' => '@prefix@',
    'NAME'	=> 'Subunit',
    'VERSION' => '@SUBUNIT_VERSION@',
    'test' => { 'TESTS' => 'tests/*.pl' },
    'PMLIBDIRS' => [ 'lib' ],
    'EXE_FILES' => [ '@abs_srcdir@/subunit-diff' ],
);
sub MY::postamble {
<<'EOT';
check: # test

uninstall_distcheck:
	rm -fr $(DESTINSTALLARCHLIB)

VPATH = @srcdir@
.PHONY: uninstall_distcheck
EOT
}