30 lines
370 B
Makefile
30 lines
370 B
Makefile
REBAR = ./rebar3
|
|
|
|
.PHONY: all dialyzer ct eunit clean distclean console
|
|
|
|
all:
|
|
$(REBAR) compile
|
|
|
|
doc:
|
|
$(REBAR) doc
|
|
|
|
dialyzer:
|
|
$(REBAR) dialyzer
|
|
|
|
ct: all
|
|
$(REBAR) ct --suite=test/gmcuckoo_SUITE
|
|
|
|
eunit:
|
|
$(REBAR) eunit --module=gmminer_pow_tests,gmminer_pow_cuckoo_tests
|
|
|
|
clean:
|
|
$(REBAR) clean
|
|
rm -rf doc/*
|
|
|
|
distclean: clean
|
|
rm -rf _build
|
|
|
|
console:
|
|
$(REBAR) shell
|
|
|