blob: 823ec2cf34d434290cd64a2bc6586435095a9458 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'File::Spec',
'VERSION_FROM' => 'Spec.pm',
'LIBS' => [''], # e.g., '-lm'
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING'
'INC' => '', # e.g., '-I/usr/include/other'
'INSTALLDIRS' => 'perl', # 'perl' makes it replace std modules
# 'PM' => {'Spec.pm' => '$(INST_LIBDIR)/File/Spec.pm',
# 'OS2.pm' => '$(INST_LIBDIR)/File/Spec/OS2.pm',
# 'Win32.pm' => '$(INST_LIBDIR)/File/Spec/Win32.pm',
# 'VMS.pm' => '$(INST_LIBDIR)/File/Spec/VMS.pm',
# 'Unix.pm' => '$(INST_LIBDIR)/File/Spec/Unix.pm',
# }
);
|