Popularity
0.5
Declining
Activity
0.0
Stable
4
1
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.
-
ExMake
DISCONTINUED. A modern, scriptable, dependency-based build tool loosely based on Make principles.
InfluxDB high-performance time series database
Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.
Promo
influxdata.com

Do you think we are missing an alternative of dismake or a related project?
Popular Comparisons
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