blob: 8ee24b16a0c11298875392bc08e9e2a47a8667c1 (
plain) (
tree)
|
|
# See LICENSE for licensing information.
REBAR = rebar
all: app
app:
@$(REBAR) compile
clean:
@$(REBAR) clean
rm -f test/*.beam
rm -f erl_crash.dump
tests: app
@$(REBAR) eunit
@$(REBAR) ct
dialyze:
@$(REBAR) dialyze
|