Rev 6 | Details | Compare with Previous | Last modification | View Log | RSS feed
REBAR = rebar3
.PHONY: all compile test qc clean
all: compile
compile:
@$(REBAR) compile
test:
@$(REBAR) eunit
qc: compile
@$(REBAR) eqc
clean:
@$(REBAR) clean
dialyze:
@$(REBAR) dialyzer