| ExtUtils-MakeMaker documentation | Contained in the ExtUtils-MakeMaker distribution. |
ExtUtils::MM_QNX - QNX specific subclass of ExtUtils::MM_Unix
Don't use this module directly. Use ExtUtils::MM and let it choose.
This is a subclass of ExtUtils::MM_Unix which contains functionality for QNX.
Unless otherwise stated it works just like ExtUtils::MM_Unix
Add .err files corresponding to each .c file.
Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix
| ExtUtils-MakeMaker documentation | Contained in the ExtUtils-MakeMaker distribution. |
package ExtUtils::MM_QNX; use strict; our $VERSION = '6.56'; require ExtUtils::MM_Unix; our @ISA = qw(ExtUtils::MM_Unix);
sub extra_clean_files { my $self = shift; my @errfiles = @{$self->{C}}; for ( @errfiles ) { s/.c$/.err/; } return( @errfiles, 'perlmain.err' ); }
1;