Skip to content
a "compiler" (as in `Mix.compilers`) for Elixir that just runs make
Elixir
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Failed to load latest commit information.
config
lib/mix/tasks
test
.gitignore
README.md
mix.exs

README.md

Dismake

Dismake is a "compiler" (as in Mix.compilers) for Elixir that just runs make.

Usage

defmodule SampleApp.Mixfile do
  use Mix.Project

  def project do
    [app: :sample_app,
     version: "0.0.1",
     elixir: "~> 1.0",
     # Add it to your compilers:
     compilers: [:make] ++ Mix.compilers,
     deps: deps]
  end

  def application do
    [applications: [:logger]]
  end

  defp deps do
    # And add it to your dependencies.
    [{:dismake, "~> 1.0.0"}]
  end
end
Something went wrong with that request. Please try again.