MagicalMake.Make (MagicalMake v0.1.2) View Source
Performs operations related to the Make command.
Link to this section Summary
Link to this section Functions
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