NAME
Mojolicious::Command::Generate::Makefile - Makefile Generator Command
SYNOPSIS
use Mojolicious::Command::Generate::Makefile;
my $makefile = Mojolicious::Command::Generate::Makefile->new;
$makefile->run(@ARGV);
DESCRIPTION
Mojolicious::Command::Generate::Makefile is a makefile generator.
ATTRIBUTES
Mojolicious::Command::Generate::Makefile inherits all attributes from Mojo::Command and implements the following new ones.
description
my $description = $makefile->description;
$makefile = $makefile->description('Foo!');
Short description of this command, used for the command list.
usage
my $usage = $makefile->usage;
$makefile = $makefile->usage('Foo!');
Usage information for this command, used for the help screen.
METHODS
Mojolicious::Command::Generate::Makefile inherits all methods from Mojo::Command and implements the following new ones.
run
$makefile = $makefile->run(@ARGV);
Run this command.