| 1 | package ExtUtils::MM_DOS;
|
|---|
| 2 |
|
|---|
| 3 | use strict;
|
|---|
| 4 | use vars qw($VERSION @ISA);
|
|---|
| 5 |
|
|---|
| 6 | $VERSION = 0.02;
|
|---|
| 7 |
|
|---|
| 8 | require ExtUtils::MM_Any;
|
|---|
| 9 | require ExtUtils::MM_Unix;
|
|---|
| 10 | @ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix );
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 | =head1 NAME
|
|---|
| 14 |
|
|---|
| 15 | ExtUtils::MM_DOS - DOS specific subclass of ExtUtils::MM_Unix
|
|---|
| 16 |
|
|---|
| 17 | =head1 SYNOPSIS
|
|---|
| 18 |
|
|---|
| 19 | Don't use this module directly.
|
|---|
| 20 | Use ExtUtils::MM and let it choose.
|
|---|
| 21 |
|
|---|
| 22 | =head1 DESCRIPTION
|
|---|
| 23 |
|
|---|
| 24 | This is a subclass of ExtUtils::MM_Unix which contains functionality
|
|---|
| 25 | for DOS.
|
|---|
| 26 |
|
|---|
| 27 | Unless otherwise stated, it works just like ExtUtils::MM_Unix
|
|---|
| 28 |
|
|---|
| 29 | =head2 Overridden methods
|
|---|
| 30 |
|
|---|
|
|---|