Subversion Repositories SE.SVN

Rev

Rev 6 | Blame | 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