MagicalMake.Make (MagicalMake v0.1.2) View Source

Performs operations related to the Make command.

Link to this section Summary

Functions

Draws Make command for ascii art.

Executes make command.

Check for exists makefile.

Link to this section Functions

Link to this function

draw_make(circle_text, make_command, interval)

View Source

Specs

draw_make(String.t(), String.t(), non_neg_integer()) :: :ok

Draws Make command for ascii art.

Examples

iex> MagicalMake.Make.draw_make("hello")
:ok # Succeed

Specs

exec_make(String.t()) :: :ok

Executes make command.

Examples

iex> MagicalMake.Make.exec_make("hello")
# exec make command
:ok # Succeed

Specs

make_check!() :: :ok

Check for exists makefile.

Examples

iex> MagicalMake.Make.make_check!
:ok # When Makefile exists