25 lines
209 B
Makefile
25 lines
209 B
Makefile
REBAR=rebar3
|
|
|
|
all: release
|
|
|
|
prod:
|
|
${REBAR} as prod tar
|
|
|
|
release:
|
|
${REBAR} release
|
|
|
|
compile:
|
|
${REBAR} compile
|
|
|
|
code:
|
|
${REBAR} dialyzer
|
|
|
|
test:
|
|
${REBAR} eunit
|
|
|
|
doc:
|
|
${REBAR} edoc
|
|
|
|
clean:
|
|
${REBAR} clean
|