Popularity
1.0
Growing
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.
-
Rebar3
Erlang build tool that makes it easy to compile and test Erlang applications and releases. -
rebar3_eqc
A rebar3 plugin to enable the execution of Erlang QuickCheck properties -
rebar3_diameter_compiler
Compile Diameter .dia files on Erlang Rebar3 projects -
ExMake
A modern, scriptable, dependency-based build tool loosely based on Make principles. -
rebar3_exunit
A plugin to run Elixir ExUnit tests from rebar3 build tool -
rebar3_neotoma_plugin
Rebar3 neotoma (Parser Expression Grammar) compiler -
rebar3_protobuffs
rebar3 protobuffs provider using protobuffs from Basho -
rebar3_asn1_compiler
Plugin for compiling ASN.1 modules with Rebar3. -
rebar3_idl_compiler
This is a plugin for compiling Erlang IDL files using Rebar3.
Learn any GitHub repo in 59 seconds
Onboard AI learns any GitHub repo in minutes and lets you chat with it to locate functionality, understand different parts, and generate new code. Use it for free at www.getonboard.dev.
Promo
getonboard.dev
Do you think we are missing an alternative of dismake or a related project?
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