Popularity
0.8
Declining
Activity
0.0
Stable
4
2
0

Monthly Downloads: 2
Programming language: Elixir
License: MIT License
Tags: Build Tools    

dismake alternatives and similar packages

Based on the "Build Tools" category.
Alternatively, view dismake alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of dismake or a related project?

Add another 'Build Tools' Package

README

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