first version, based on mnesia_eleveldb

This commit is contained in:
Ulf Wiger
2018-02-06 09:43:57 +01:00
commit 6c9f5b565f
30 changed files with 4835 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
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
test:
$(REBAR3) eunit $(suite)
conf_clean:
@:
clean:
$(REBAR3) clean
$(RM) doc/*
run:
$(REBAR3) shell