PROJECT = p11p REBAR = rebar3 # export PATH=$PATH:~/.cache/rebar3/bin all: compile compile: @$(REBAR) compile rel: @$(REBAR) release clean: @$(REBAR) clean clean-all: @$(REBAR) clean -a dialyzer: @$(REBAR) dialyzer check: @$(REBAR) do eunit -v, ct -v, proper -v eunit: @$(REBAR) do eunit tests: @$(REBAR) ct start: rel ./_build/default/rel/$(PROJECT)/bin/$(PROJECT) start stop: rel ./_build/default/rel/$(PROJECT)/bin/$(PROJECT) stop shell: @$(REBAR) shell .PHONY: compile rel clean dialyzer check tests shell