The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Mite::MakeMaker - Use in your Makefile.PL when developing with Mite

SYNOPSIS

    # In Makefile.PL
    use ExtUtils::MakeMaker;
    eval { require Mite::MakeMaker; };

    WriteMakefile(
        ...as normal...
    );

DESCRIPTION

If your module is being developed with ExtUtils::MakeMaker, this module makes working with Mite more natural.

Be sure to require this in an eval block so users can install your module without mite.

make

When make is run, mite will compile any changes.

make clean

When make clean is run, mite files will be cleaned up as well.

make manifest

Be sure to run this after running make and before running make dist so all the mite files are picked up.

MANIFEST.SKIP

The .mite directory should not be shipped with your distribution. Add ^\.mite/ to your MANIFEST.SKIP file.

SEE ALSO

Mite::ModuleBuild