ecrecover/Makefile
2023-01-13 16:11:18 +01:00

12 lines
188 B
Makefile

REBAR3 ?= $(shell test -e `which rebar3` 2>/dev/null && which rebar3 || echo "./rebar3")
all: compile
compile:
${REBAR3} compile
clean:
${REBAR3} clean
test: compile
${REBAR3} eunit