Files
gmminer/Makefile
T
Ulf Wiger 8c5e9b9f26 Renaming
2025-03-12 09:51:42 +01:00

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