1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- REBAR=$(shell which rebar || echo ./rebar)
- .PHONY: all compile clean eunit test eqc doc check dialyzer
- DIRS=src
- all: deps compile
- check: compile dialyzer
- compile:
- $(REBAR) compile
- deps:
- $(REBAR) get-deps
- clean:
- $(REBAR) clean
- eunit:
- $(REBAR) eunit
- test: eunit
- doc:
- $(REBAR) get-deps compile doc
- dialyzer:
- $(REBAR) skip_deps=true dialyze
|