
aecuckoo_SUITE is moved from aecuckoo to aeminer To make the suite pass: - siphash24 module was taken from ae node - enacl has become a dep of aeminer (due to blake2b_256 hash)
26 lines
271 B
Makefile
26 lines
271 B
Makefile
REBAR = ./rebar3
|
|
|
|
.PHONY: all dialyzer test clean console
|
|
|
|
all:
|
|
$(REBAR) compile
|
|
|
|
doc:
|
|
$(REBAR) doc
|
|
|
|
dialyzer:
|
|
$(REBAR) dialyzer
|
|
|
|
ct: all
|
|
$(REBAR) ct test/aecuckoo_SUITE
|
|
|
|
clean:
|
|
$(REBAR) clean
|
|
rm -rf doc/*
|
|
|
|
distclean: clean
|
|
rm -rf _build
|
|
|
|
console:
|
|
$(REBAR) shell
|