This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
ensure the perldelta version is updated in win32/GNUmakefile
[perl5.git] / Porting / pod_rules.pl
index 1de43a9..0d837bf 100644 (file)
@@ -26,6 +26,7 @@ if (ord("A") == 193) {
             vms => 'vms/descrip_mms.template',
             nmake => 'win32/Makefile',
             dmake => 'win32/makefile.mk',
+            gmake => 'win32/GNUmakefile',
             podmak => 'win32/pod.mak',
             unix => 'Makefile.SH',
             # plan9 =>  'plan9/mkfile',
@@ -164,6 +165,7 @@ sub do_nmake {
 
 # shut up used only once warning
 *do_dmake = *do_dmake = \&do_nmake;
+*do_gmake = *do_gmake = \&do_nmake;
 
 sub do_podmak {
     my ($name, $body) = @_;
@@ -225,9 +227,4 @@ pod/$_: pod/$state->{copies}{$_}
 process($_, $Build{$_}, main->can("do_$_"), $Test && ++$test, $Verbose)
     foreach sort keys %Build;
 
-# Local variables:
-# cperl-indent-level: 4
-# indent-tabs-mode: nil
-# End:
-#
 # ex: set ts=8 sts=4 sw=4 et: