mirror of
https://github.com/stephenenelson/convert-binhex.git
synced 2024-11-25 21:33:51 +00:00
21 lines
506 B
Makefile
21 lines
506 B
Makefile
|
#!/usr/bin/perl
|
||
|
use ExtUtils::MakeMaker;
|
||
|
|
||
|
#------------------------------------------------------------
|
||
|
# Makefile:
|
||
|
#------------------------------------------------------------
|
||
|
|
||
|
# Write the Makefile:
|
||
|
WriteMakefile(
|
||
|
NAME => 'Convert::BinHex',
|
||
|
VERSION_FROM => "./lib/Convert/BinHex.pm",
|
||
|
DISTNAME => "Convert-BinHex",
|
||
|
EXE_FILES => [@EXES],
|
||
|
'dist' => {
|
||
|
PREOP => "cd docs ; make",
|
||
|
COMPRESS => 'gzip',
|
||
|
SUFFIX => 'gz',
|
||
|
}
|
||
|
);
|
||
|
|