blob: a537d61f71447548472a86589749b458be69446d [file] [log] [blame]
REBAR?=rebar3
.PHONY: all edoc test clean build
all: build
build:
@$(REBAR) get-deps # rebar2 compatibility, it's no-op on rebar3
@$(REBAR) compile
test: build
@$(REBAR) eunit
edoc: build
@$(REBAR) edoc
clean:
@$(REBAR) clean