mirror of
https://github.com/valitydev/shamir.git
synced 2024-11-06 09:45:19 +00:00
12 lines
117 B
Makefile
12 lines
117 B
Makefile
ERL ?= erl
|
|
APP := shamir
|
|
|
|
all:
|
|
@./rebar compile
|
|
|
|
clean:
|
|
@./rebar clean
|
|
|
|
test: all
|
|
@(./rebar skip_deps=true eunit)
|