The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
require 5.020_000;

use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

WriteMakefile(
    NAME              => 'Regexp::Compare',
    VERSION_FROM      => 'lib/Regexp/Compare.pm', # finds $VERSION
    PREREQ_PM         => {}, # e.g., Module::Name => 1.1
    ABSTRACT_FROM     => 'lib/Regexp/Compare.pm', # retrieve abstract from module
    AUTHOR            => 'Vaclav Barta <vbarta@mangrove.cz>',
    LIBS              => [''], # e.g., '-lm'
    DEFINE            => '', # e.g., '-DHAVE_SOMETHING'
    INC               => '-I.', # e.g., '-I. -I/usr/include/other'
    OBJECT            => 'Compare.o engine.o',
    'depend'	      => {
			  'engine.o' => 'engine.c engine.h XPosixAlnum.20 XPosixAlnum.22 XPosixAlnum.24 XPosixAlpha.20 XPosixAlpha.24 XPosixDigit.20 XPosixDigit.22 XPosixWord.20 XPosixWord.22',
			 },
);