blob: cb9696bf41645f4be98a537b0a0622033492c271 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
use ExtUtils::MakeMaker;
use Config;
my $e = $Config{'exe_ext'};
my $o = $Config{'obj_ext'};
my $exeout_flag = '-o ';
if ($^O eq 'MSWin32') {
if ($Config{'cc'} =~ /^cl/i) {
$exeout_flag = '-Fe';
}
elsif ($Config{'cc'} =~ /^bcc/i) {
$exeout_flag = '-e';
}
}
WriteMakefile(
NAME => "B",
VERSION => "a5",
PL_FILES => { 'defsubs_h.PL' => 'defsubs.h' },
MAN3PODS => {},
clean => {
FILES => "perl$e *$o B.c defsubs.h *~"
}
);
package MY;
sub post_constants {
"\nLIBS = $Config::Config{libs}\n"
}
sub postamble {
'
B$(OBJ_EXT) : defsubs.h
'
}
|