ecrecover/Makefile
2023-01-13 17:01:16 +01:00

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