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

package rebuild_iff_necessary;

BEGIN {
    use IPC::System::Simple qw(systemx);
    systemx($^X, "Makefile.PL") if not -f "Makefile" or ((stat "Makefile")[9] > (stat "Makefile.PL")[9]);
    systemx("make");
}

1;