Extutils-Makemaker-Tutorial

ExtUtils::MakeMaker::Tutorial(3p) Perl Programmers Reference Guide

Extutils-Makemaker-Tutorial

ExtUtils::MakeMaker::Tutorial(3p) Perl Programmers Reference Guide # ExtUtils::MakeMaker::Tutorial(3p) Perl Programmers Reference Guide NNAAMMEE # ExtUtils::MakeMaker::Tutorial - Writing a module with MakeMaker SSYYNNOOPPSSIISS # use ExtUtils::MakeMaker; WriteMakefile( NAME => 'Your::Module', VERSION_FROM => 'lib/Your/Module.pm' ); DDEESSCCRRIIPPTTIIOONN # This is a short tutorial on writing a simple module with MakeMaker. It's really not that hard. TThhee MMaannttrraa MakeMaker modules are installed using this simple mantra perl Makefile.PL make make test make install There are lots more commands and options, but the above will do it. ...