12345678910111213141516171819202122 |
- .PHONY: all compile test dialyzer clean distclean doc
- all: compile test dialyzer
- @rebar compile
- compile:
- @rebar compile
- test:
- @rebar eunit skip_deps=true
- dialyzer:
- @dialyzer -Wunderspecs -r ebin
- doc:
- @rebar doc skip_deps=true
- clean:
- @rebar clean
- distclean: clean
- @rebar delete-deps
|