| 123456789101112131415161718192021222324252627282930 |
- .PHONY: test
- REBAR=./rebar
- all: get-deps compile
- compile: get-deps
- @$(REBAR) compile
- get-deps:
- @$(REBAR) get-deps
- update-deps:
- @$(REBAR) update-deps
- xref:
- @$(REBAR) xref skip_deps=true
- clean:
- @$(REBAR) clean
- rm -rf rel/emqtt
- test:
- @$(REBAR) skip_deps=true eunit
- edoc:
- @$(REBAR) doc
- dist:
- cd rel && ../rebar generate -f
|