From 7295d365f6b1e1202cb32456a553cd460f695f4a Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Wed, 19 Jun 2019 11:52:26 +0200 Subject: add p11p-daemon skeleton --- p11p-daemon/Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 p11p-daemon/Makefile (limited to 'p11p-daemon/Makefile') diff --git a/p11p-daemon/Makefile b/p11p-daemon/Makefile new file mode 100644 index 0000000..328d4c4 --- /dev/null +++ b/p11p-daemon/Makefile @@ -0,0 +1,27 @@ +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 +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 -- cgit v1.1