mnesia_rocksdb/Makefile
Ulf Wiger 6f41733461 Add tests for error handling
Document reason for breaking out update functions
2019-09-30 14:02:35 +02:00

32 lines
350 B
Makefile

suite=$(if $(SUITE), suite=$(SUITE), )
REBAR3=$(shell which rebar3 || echo ./rebar3)
.PHONY: all check test clean run
all:
$(REBAR3) compile
docs:
$(REBAR3) doc
check:
$(REBAR3) dialyzer
eunit:
$(REBAR3) eunit $(suite)
ct:
$(REBAR3) ct $(suite)
test: eunit ct
conf_clean:
@:
clean:
$(REBAR3) clean
$(RM) doc/*
run:
$(REBAR3) shell