diff --git a/Makefile b/Makefile index ec86c181..f463c99f 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,15 @@ # See LICENSE for licensing information. +REBAR = ./rebar + all: app app: - @./rebar compile + @$(REBAR) compile clean: - @./rebar clean + @$(REBAR) clean rm -f erl_crash.dump test: - @./rebar eunit + @$(REBAR) eunit