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