13 lines
213 B
Makefile
13 lines
213 B
Makefile
REBAR3 ?= $(shell test -e `which rebar3` 2>/dev/null && which rebar3 || echo "./rebar3")
|
|
|
|
all: compile
|
|
|
|
compile:
|
|
${REBAR3} compile
|
|
|
|
clean:
|
|
${REBAR3} clean
|
|
@rm -fr c_src/secp256k1
|
|
|
|
test: compile
|
|
${REBAR3} eunit
|