Packages

General Makefile targets for an Elixir application

Current section

Files

Jump to
makefile lib makefile.ex
Raw

lib/makefile.ex

defmodule Makefile do
@moduledoc """
Documentation for Makefile.
"""
@doc """
Hello world.
## Examples
iex> Makefile.hello
:world
"""
def hello do
:world
end
end