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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
package ExtUtils::MM_Win95;
use vars qw($VERSION @ISA);
$VERSION = 0.03_01;
require ExtUtils::MM_Win32;
@ISA = qw(ExtUtils::MM_Win32);
use Config;
my $DMAKE = $Config{'make'} =~ /^dmake/i;
my $NMAKE = $Config{'make'} =~ /^nmake/i;
=head1 NAME
ExtUtils::MM_Win95 - method to customize MakeMaker for Win9X
=head1 SYNOPSIS
You should not be using this module directly.
=head1 DESCRIPTION
This is a subclass of ExtUtils::MM_Win32 containing changes necessary
to get MakeMaker playing nice with command.com and other Win9Xisms.
=head2 Overriden methods
Most of these make up for limitations in the Win9x command shell.
Namely the lack of && and that a chdir is global, so you have to chdir
back at the end.
=over 4
=item dist_test
&& and chdir problem.
=cut
sub dist_test {
my($self) = shift;
return q{
disttest : distdir
cd $(DISTVNAME)
$(ABSPERLRUN) Makefile.PL
$(MAKE) $(PASTHRU)
$(MAKE) test $(PASTHRU)
cd ..
};
}
=item subdir_x
&& and chdir problem.
Also, dmake has an odd way of making a command series silent.
=cut
sub subdir_x {
my($self, $subdir) = @_;
# Win-9x has nasty problem in command.com that can't cope with
# &&. Also, Dmake has an odd way of making a commandseries silent:
if ($DMAKE) {
return sprintf <<'EOT', $subdir;
subdirs ::
@[
cd %s
$(MAKE) all $(PASTHRU)
cd ..
]
EOT
}
else {
return sprintf <<'EOT', $subdir;
subdirs ::
$(NOECHO)cd %s
$(NOECHO)$(MAKE) all $(PASTHRU)
$(NOECHO)cd ..
EOT
}
}
=item xs_c
The && problem.
=cut
sub xs_c {
my($self) = shift;
return '' unless $self->needs_linking();
'
.xs.c:
$(PERLRUN) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) $*.xs > $*.c
'
}
=item xs_cpp
The && problem
=cut
sub xs_cpp {
my($self) = shift;
return '' unless $self->needs_linking();
'
.xs.cpp:
$(PERLRUN) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) $*.xs > $*.cpp
';
}
=item xs_o
The && problem.
=cut
sub xs_o {
my($self) = shift;
return '' unless $self->needs_linking();
# Having to choose between .xs -> .c -> .o and .xs -> .o confuses dmake.
return '' if $DMAKE;
'
.xs$(OBJ_EXT):
$(PERLRUN) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) $*.xs > $*.c
$(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.c
';
}
=item clean_subdirs_target
&& and chdir problem.
=cut
sub clean_subdirs_target {
my($self) = shift;
# No subdirectories, no cleaning.
return <<'NOOP_FRAG' unless @{$self->{DIR}};
clean_subdirs :
$(NOECHO)$(NOOP)
NOOP_FRAG
my $clean = "clean_subdirs :\n";
for my $dir (@{$self->{DIR}}) {
$clean .= sprintf <<'MAKE_FRAG', $dir;
cd %s
$(TEST_F) $(FIRST_MAKEFILE)
$(MAKE) clean
cd ..
MAKE_FRAG
}
return $clean;
}
=item realclean_subdirs_target
&& and chdir problem.
=cut
sub realclean_subdirs_target {
my $self = shift;
return <<'NOOP_FRAG' unless @{$self->{DIR}};
realclean_subdirs :
$(NOECHO)$(NOOP)
NOOP_FRAG
my $rclean = "realclean_subdirs :\n";
foreach my $dir (@{$self->{DIR}}){
$rclean .= sprintf <<'RCLEAN', $dir;
-cd %s
-$(PERLRUN) -e "exit unless -f shift; system q{$(MAKE) realclean}" $(FIRST_MAKEFILE)
-cd ..
RCLEAN
}
return $rclean;
}
=item os_flavor
Win95 and Win98 and WinME are collectively Win9x and Win32
=cut
sub os_flavor {
my $self = shift;
return ($self->SUPER::os_flavor, 'Win9x');
}
=back
=head1 AUTHOR
Code originally inside MM_Win32. Original author unknown.
Currently maintained by Michael G Schwern <schwern@pobox.com>.
Send patches and ideas to <F<makemaker@perl.org>>.
See http://www.makemaker.org.
=cut
1;
|