mirror of
https://github.com/valitydev/shamir.git
synced 2024-11-06 01:35:18 +00:00
17 lines
181 B
Makefile
17 lines
181 B
Makefile
ERL ?= erl
|
|
APP := shamir
|
|
|
|
all: build
|
|
|
|
build: deps
|
|
@./rebar compile
|
|
|
|
clean:
|
|
@./rebar clean
|
|
|
|
deps: ./deps/
|
|
./rebar get-deps update-deps
|
|
|
|
test: all
|
|
@(./rebar skip_deps=true eunit)
|