1use ExtUtils::MakeMaker;
2
3#  make the samples directory
4mkdir ('samples', 00755);
5
6#  write the makefile
7WriteMakefile ( 'NAME' => 'Chart',
8		'PREREQ_PM' => { 'GD' => 2.0 },
9		'dist' => { 'COMPRESS' => 'gzip', 'SUFFIX' => 'gz' },
10		'VERSION' => '2.4.10' )
11