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 """
## Examples
iex> Makefile.generate
"PATH_TO_MAKEFILE"
> mix makefile.generate
"""
@template File.read!('lib/makefile.elixir.mk')
def generate do
@template
end
end