1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- REBAR3=$(shell which rebar3 || echo ./rebar3)
- .PHONY: all compile clean eunit test doc check dialyzer
- DIRS=src
- all: check test
- check: compile dialyzer
- compile:
- $(REBAR3) compile
- clean:
- $(REBAR3) clean
- eunit:
- $(REBAR3) eunit
- test: eunit
- doc:
- $(REBAR3) doc
- dialyzer:
- $(REBAR3) dialyzer
|