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