1use ExtUtils::MakeMaker;
2# See lib/ExtUtils/MakeMaker.pm for details of how to influence
3# the contents of the Makefile that is written.
4WriteMakefile(
5    'NAME'	=> 'Crypt-DES_PP',
6    'VERSION_FROM' => 'DES_PP.m4', # finds $VERSION
7);
8
9sub MY::postamble {
10   '
11all :: lib/Crypt/DES_PP.pm README
12
13M4 = m4
14
15lib/Crypt/DES_PP.pm: DES_PP.m4
16	$(M4) -P $< >$@
17
18README: DES_PP.m4
19	$(PERL) -e \'use Pod::Text; pod2text "$<"\' >$@
20
21'
22}
23