12345678910111213141516171819202122232425262728 |
- ## shallow clone for speed
- REBAR_GIT_CLONE_OPTIONS += --depth 1
- export REBAR_GIT_CLONE_OPTIONS
- REBAR = rebar3
- all: compile
- compile:
- $(REBAR) compile
- ct: compile
- $(REBAR) as test ct -v
- eunit: compile
- $(REBAR) as test eunit
- xref:
- $(REBAR) xref
- cover:
- $(REBAR) cover
- clean: distclean
- distclean:
- @rm -rf _build
- @rm -f data/app.*.config data/vm.*.args rebar.lock
|