Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jarednorman/dismake
a "compiler" (as in `Mix.compilers`) for Elixir that just runs make
https://github.com/jarednorman/dismake
Last synced: 20 days ago
JSON representation
a "compiler" (as in `Mix.compilers`) for Elixir that just runs make
- Host: GitHub
- URL: https://github.com/jarednorman/dismake
- Owner: jarednorman
- Created: 2014-12-28T04:46:37.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-28T04:57:18.000Z (almost 10 years ago)
- Last Synced: 2024-10-02T09:41:06.057Z (about 1 month ago)
- Language: Elixir
- Homepage:
- Size: 113 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - Mix compiler running make. (Build Tools)
- fucking-awesome-elixir - dismake - Mix compiler running make. (Build Tools)
- awesome-elixir - dismake - Mix compiler running make. (Build Tools)
README
# Dismake
Dismake is a "compiler" (as in `Mix.compilers`) for Elixir that just runs `make`.
## Usage
```elixir
defmodule SampleApp.Mixfile do
use Mix.Projectdef project do
[app: :sample_app,
version: "0.0.1",
elixir: "~> 1.0",
# Add it to your compilers:
compilers: [:make] ++ Mix.compilers,
deps: deps]
enddef application do
[applications: [:logger]]
enddefp deps do
# And add it to your dependencies.
[{:dismake, "~> 1.0.0"}]
end
end
```