mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
21 lines
412 B
Makefile
Executable File
21 lines
412 B
Makefile
Executable File
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
|
|
}
|